15 puzzle solver

From Rosetta Code
Revision as of 06:37, 10 July 2017 by rosettacode>Paulo Jorente (Created page with "{{draft task|Games}} Your task is to write a programm that solves the Fifteen Puzzle Game in the fewest number of moves.<br /> For this task you will be using...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
15 puzzle solver is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

Your task is to write a programm that solves the Fifteen Puzzle Game in the fewest number of moves.
For this task you will be using the following puzzle:

15 14  1  6
 9 11  4 12
 0 10  7  3
13  8  5  2


The output must show the moves' directions, like so: left, left, left, down, right... and so on.
Show this output on this page.