8-puzzle in rust

from blog Jonas Hietala, | ↗ original
I think rust is one of the most interesting upcoming programming languages out there. So I wrote a solution to the 8-puzzle (see the 15-puzzle) using A*. It also has a breadth first search for solutions on a specific distance away from the goal. The solution is not by any means a great one and there are parts I’m a bit annoyed with, but that’s...