1. Simulated the Minesweeper game by using Python.

  2. Implemented the most commonly used methods that formulate the Minesweeper game as a set of Linear Equations to solve the game.

  3. As a part of research in the project, we attempted to define Minesweeper game as POMDP (Partially Observable Markov Decision Process) and attempted to reduce the complexity by considering the region of influence as 4 X 4 grid around the agent. We however, encountered the problem of the curse of dimensionality and the complexity of the problem increased exponentially. Thus, we decided to use the Linear Equations to solve the game.

  4. The entire implementation was done in Python.