8Puzzle : A game containing 8 jumbled tiles numbering from 1->8 in a 3x3 grid. The goal? Slide the tiles one by one to sort in ascending order Solved using A* search algorithm in python
NxNmaze : User specifies the size of maze N x N and it creates a random maze & solves it using optional traversal methods such as DFS,BFS and Greedy Best-First Search (GBFS)