maze-solver/main.py
Dan Anglin 1b0f044834
Some checks failed
test / test (pull_request) Failing after 6s
feat: add a side panel for user interaction
This commit adds a simple side panel to allow users to interact with the
application. The side panel allows the user to:

- Generate and regenerate mazes
- Choose between the searching algorithms
- Choose whether or not to add randomness to the algorithm
- Run and re-run the simulation
2024-02-18 08:53:36 +00:00

10 lines
109 B
Python

from app import App
def main():
app = App()
app.mainloop()
if __name__ == "__main__":
main()