Giter VIP home page Giter VIP logo

roman-numeral-calculator-kata's Introduction

Roman numeral calculator kata

A Roman numeral calculator kata project for the Vancouver Code Dojo. The following notes are taken from:

http://codingdojo.org/cgi-bin/wiki.pl?KataRomanCalculator

Problem description

"As a Roman Bookkeeper I want to add Roman numbers because doing it manually is too tedious." Given the Roman numerals, (IVXLCDM which means one, five, ten, fifty, hundred, fivehundred and a thousand respectively), create two numbers and add them. As we are in Rome there is no such thing as decimals or integers, we need to do this with strings. An example would be "XIV" + "LX" = "LXXIV"

There are some rules to a Roman number:

  • Numerals can be concatenated to form a larger numeral ("XX" + "II" = "XXII")

  • If a lesser numeral is put before a bigger it means subtraction of the lesser from the bigger ("IV" means four, "CM" means ninehundred)

  • If the numeral is I, X or C you can't have more than three ("II" + "II" = "IV")

  • If the numeral is V, L or D you can't have more than one ("D" + "D" = "M")

Clues

String grouping and concatenation is key to solving this kata. But remember the rule that lesser numerals can preceede bigger ones.

Getting started

Prepare the environment:

virtualenv .
. bin/activate

Run the tests:

make check

roman-numeral-calculator-kata's People

Contributors

jkakar avatar

Watchers

 avatar James Cloos 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.