Omar-Nour/Haskell-Minesweeper

left:: MyState -> MyState

Closed this issue · 0 comments

The function takes as input a state and returns the state resulting from moving left
from the input state. If left will result in going out of the boundaries of the grid,
Null should be returned.
Example:
left (S (3,0) [(2,2),(1,2)] "" Null)
= Null