Random Python Projects
-
- Implements recursion to solve nxn sudoku puzzles. Tested on 4x4, 9x9, 16x16 puzzles.
- User can now input a string of integers as they are seen in a sudoku board (with 0's for empty spaces).
- Program was tested on 10000 sudoku puzzles from here. Returned correct results in 47.235 seconds
- Created animations.py. Currently operated manually. After running sudoku.py, user needs to wait for "Go" coomand in console, and manually execute animations.py. Shows animated graph of solve time for first 100 puzzles
-
- Primitive Password vault. Has login and register features
- Stores credentials in plain text (working on implementing encryption algorithms)
- Created using tkinter