Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 308 Bytes

README.md

File metadata and controls

6 lines (5 loc) · 308 Bytes

15-puzzle

We implement three search algorithms to find a solution from a random start position:

  1. Greedy: empirically the fastest one, but solutions can be long.
  2. Dijkstra algorithm: guarantees the shortest path, but requires lots of resources.
  3. A* search: faster than Dijkstra, better than greedy.