A puzzle solver for the game BallSort
This project is written in python3 without any external dependencies so all you need to be up and running is to clone the repo and start playing with the tests.
It can solves any given game state and give a possible moves solution for it.
Both BFS and DFS stategy is getting used to generate the solution space. But BFS implementation requires optimization as it takes ages to solve for big puzzle levels. Will try to improve that if get time in future.
Currently test coverage is very poor will try to improve.
If anybody wants to contribute pr's are welcomed :).
In order to see how the project is run see the test_main inside the test directory. Most of the things should be clear if you have played the game ball sort.
- Python 3
- Shubham Joshi - Initial work - https://github.com/joshi95)