An open API service indexing awesome lists of open source software.

https://github.com/silva4dev/ruby-tic-tac-toe-example

🎲 Build a tic-tac-toe game on the command line where two human players can play against each other and the board is displayed in between turns using Ruby 🎯
https://github.com/silva4dev/ruby-tic-tac-toe-example

challenge design-patterns hackathon logic-programming ruby

Last synced: 12 months ago
JSON representation

🎲 Build a tic-tac-toe game on the command line where two human players can play against each other and the board is displayed in between turns using Ruby 🎯

Awesome Lists containing this project

README

          

# Tic Tac Toe

Build a tic-tac-toe game on the command line where two human players can play against each other and the board is displayed in between turns.

```
1. Think about how you would set up the different elements within the game… What should be a class? Instance variable? Method? A few minutes of thought can save you from wasting an hour of coding.
2. Build your game, taking care to not share information between classes any more than you have to.
3. Post your solution below, then check out this example solution from RosettaCode.org.
```