Code Monkey home page Code Monkey logo

fix-tac-toe's Introduction

Tic Tac Toe

How to Play

Clone the repository and change into the project's directory.

Video of me running through the usage process

Run ruby tic_tac_toe.rb.

You'll be prompted to choose a character. Your choice must be an X or an O.

From here, you will be prompted to make a move. Here are your options:

  • top left
  • top middle
  • top right
  • middle left
  • center
  • middle right
  • bottom left
  • bottom middle
  • bottom right

After you make a move, the computer will respond with one of its own, a visual representation of the board will be displayed, and the process repeats until there is a winner.

When asked for another game, reply Yes to do so. Typing anything else will exit the game.

How the Winning Logic is Implemented

The Board is represented as an Array with 9 openings (8 indexes). Each of these openings contains a Cell. There is an attribute on Cell instances called value that stores either an X or an O.

The board, with its WINNING_COMBINATIONS constant, is also aware of which indexes need to be filled in order for there to be a potential winner.

The sauce is in #winner?, where we iterate over each combination in WINNING_COMBINATIONS, and check to see if each of those indexes contain the same value.

There is also a check to see if one of those indexes is a String so that the board doesn't interpret three consecutive :blank cells as there being a winner.

fix-tac-toe's People

Contributors

katekourbatova avatar dylanerichards avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.