Connect Four

Connect Four, a connection game for 2 players, played on a seven-column, six-row vertically suspended grid. Players take turns dropping discs, occupying the lowest available space within the column, with the objective to form a horizontal, vertical, or diagonal line of four of one's own discs.

Task - Implement the game logic

  1. Start Condition - Gather player inputs and implement the board.
  2. Managing turns - Player that represents the yellow disc starts the game.
    1. Asking the player where s/he wants to insert s/he disc
    2. Discs Insertion
    3. Error Handling
  3. Printing Final Results

Fun Facts