Tags | web-frontend html css git-feature-branching tdd |
Hard Prerequisites | |
IMPORTANT: Please review these prerequisites, they include important information that will help you with this content. | |
|
Please make sure you are following Git Feature Branching at this point. It’s really important and really useful.
For example:
git checkout master
git pull
git checkout -b feat/configurable-grid-size
As a user, I want to be able to choose the dimensions of the grid each time I play the game. For example, I might want to play on a 2x2 grid or a 3x2 grid.
As a user, I want to see how long it takes for me to finish the game. When the game is done I want to see a message that tells me how long it took me to finish the game
As a user, I want to be able to see how many turns I’ve had. The game needs to keep track of this count. When the game is done I want to see a message that tells me how many moves I took to finish the game.