Coder Social home page Coder Social logo

ruby-bowling's Introduction

Ruby Bowling Kata

My implementation in Ruby of the KataBowling challenge, based on a game of standard 10-pin American bowling. It successfully scores a game of bowling if a valid turn sequence is passed in.

Bowling Rules:

  • 10 turns allowed per game.
  • 2 rolls allowed per turn.
  • If bowler fails to knock both down, score for that turn is sum of its rolls rolls.
  • Spare: bowler knocks down 10 on roll #2. Score is 10 + next roll score.
  • Strike: bowler knocks down 10 on roll #1. Score is 10 + next 2 throw scores.
  • Spare or strike on last turn (turn 10), gets 1 or 2 bonus rolls respectively. These bonus rolls count toward the 10th turn.

My Approach:

I chose to structure the turns as an array of arrays. Since the kata doesn't require checking for invalid roll sequences, I simply check for a bonus based on the array count. If a bonus exists, it gets defined as bonus, removed from the turns, and added on to the final turn score.

To deal with consecutive strike scoring, I have a strike_scorer method that looks ahead at the following two turns, and checks to see if they are also strikes. My main scorer method is where the magic happens - a while loop iterates through each turn in the array except the 10th turn, then the 10th turn is dealt with based on whether a bonus exists or not.

ruby-bowling's People

Contributors

neilrenicker avatar

Stargazers

 avatar  avatar

Watchers

 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.