Table of contents
π«£ Peek


Connect Four
On a 6x7 grid, 2 players take turns and drops colored tokens, the tokens fall straight down, taking the lowest available space within column. The objective of the game is to be the first to form a horizontal, vertical, or diagonal line of four of oneβs own tokens.
Documentation
Documentation made for learning github actions to build and deploy docs automatically , so not actual full documentation of code.
π¦ Structure
.
βββ lib
βΒ Β βββ connect_four
βΒ Β βΒ Β βββ board.rb
βΒ Β βΒ Β βββ data_structure
βΒ Β βΒ Β βΒ Β βββ linked_list.rb
βΒ Β βΒ Β βΒ Β βββ node.rb
βΒ Β βΒ Β βββ display.rb
βΒ Β βΒ Β βββ game.rb
βΒ Β βΒ Β βββ player.rb
βΒ Β βββ connect_four.rb
βββ main.rb // just a file to run my game
βββ README.md
βββ spec //tests
βββ connect_four
βΒ Β βββ board_spec.rb
βΒ Β βββ game_spec.rb
βΒ Β βββ player_spec.rb
βββ connect_four_spec.rb
βββ spec_helper.rb
βββ Gemfile
βββ Gemfile.lock