extra features for your memory game

Hard Prerequisites
  • PROJECTS: password-checker
  • PROJECTS: Memory game web app
  • TOPICS: Git feature branching

  • Please make sure you are following Git Feature Branching at this point. It’s really impportant and really useful.

    • One branch per feature please!
    • Every branch should come off master.

    For example:

    git checkout master
    git pull
    git checkout -b feat/configurable-grid-size
    

    Feature 1: 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.

    Feature 2: Timer

    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

    Feature 3: Count card flips

    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.


    RAW CONTENT URL