Code Monkey home page Code Monkey logo

bowling's Introduction

Scoring bowling results... what else?

This is one of those programs you write when you just wanna practice some logic. And since I never quite understood bowling, what better way to learn it.

  • Input: Frame set (string)
  • Ouput: Score (int)

The scoring rules:

Each game, or “line” of bowling, includes ten turns, or “frames" for the bowler. In each frame, the bowler gets up to two tries to knock down all ten pins.

If the first ball in a frame knocks down all ten pins, this is called a “strike”. The frame is over. The score for the frame is ten plus the total of the pins knocked down in the next two balls.

If the second ball in a frame knocks down all ten pins, this is called a “spare”. The frame is over. The score for the frame is ten plus the number of pins knocked down in the next ball.

If, after both balls, there is still at least one of the ten pins standing the score for that frame is simply the total number of pins knocked down in those two balls.

If you get a spare in the last (10th) frame you get one more bonus ball. If you get a strike in the last (10th) frame you get two more bonus balls. These bonus throws are taken as part of the same turn. But if a bonus ball knocks down all the pins, the process does not repeat. The bonus balls are only used to calculate the score of the final frame.

The game score is the total of all frame scores.

Input valid chars

X indicates a strike

/ indicates a spare

- indicates a miss

| indicates a frame boundary

|| indicates a last frame boundary. Characters after this are the bonus balls, if any.

Examples:

X|X|X|X|X|X|X|X|X|X||XX

Strikes in all ten frames. Two bonus balls, both strikes. Score for each frame == 10 + score for next two Since we just had strikes then each frame == 10 + 10 + 10 == 30

Total score == 10 frames x 30 == 300

9-|9- |9-|9- |9-|9- |9-|9- |9-|9- ||

Nine pins hit on the first ball of all ten frames. Second ball of each frame misses last remaining pin. No bonus balls. Score for each frame == 9

Total score == 10 frames x 9 == 90

5/|5/|5/|5/|5/|5/|5/|5/|5/|5/||5

Five pins on the first ball of all ten frames. Second ball of each frame hits all five remaining One bonus ball, hits five pins. Score for each frame == 10 + score for next one Since first one of next frame is 5 then each frame == 10 + 5 == 15

Total score == 10 frames x 15 == 150

X|7/|9-|X|- 8|8/|-6|X|X|X||81

Total score == 167

bowling's People

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.