Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 631 Bytes

README.md

File metadata and controls

17 lines (9 loc) · 631 Bytes

water-sort-game

This is an exercise for my AI University course. I haven't made the actual game but I have implemented the part that solves the game :).

Solve

The solve function is just a basic implementation of the DFS algorithm.

solve

Optimal Solve

This function implement A* seach algorithm to find the optimal solution (the solution with the minimum number of moves) in a reasonable time.

opt_solve