Coding Dojo
         ¿Que es?

     JoeDayz 2012
Reunión de programadores para
    trabajar en un reto de
        programación
Adquiriras
  nuevas
habilidades
Colaborativo y no competitivo
Divertido
“mucha cerveza y
   bocaditos”
CodeKata
Randori




          Ver Video
Kata: Números Romanos
   Problem Description




The Romans wrote numbers using letters - I, V, X, L, C, D, M. (notice these letters
have lots of straight lines and are hence easy to hack into stone tablets)

Parte I: The Kata says you should write a function to convert from normal numbers to
Roman Numerals: eg

     1 --> I
     10 --> X
     7 --> VII
etc.
For a full description of how it works, take a look at [http://www.novaroma.org/
via_romana/numbers.html]: which includes an implementation of the Kata in
javascript.

There is no need to be able to convert numbers larger than about 3000. (The Romans
themselves didn't tend to go any higher)

Parte II: Write a function to convert in the other direction, ie numeral to digit.

¿Qué es un Coding dojo?

  • 1.
    Coding Dojo ¿Que es? JoeDayz 2012
  • 2.
    Reunión de programadorespara trabajar en un reto de programación
  • 3.
  • 4.
    Colaborativo y nocompetitivo
  • 5.
  • 6.
  • 7.
    Randori Ver Video
  • 8.
    Kata: Números Romanos Problem Description The Romans wrote numbers using letters - I, V, X, L, C, D, M. (notice these letters have lots of straight lines and are hence easy to hack into stone tablets) Parte I: The Kata says you should write a function to convert from normal numbers to Roman Numerals: eg 1 --> I 10 --> X 7 --> VII etc. For a full description of how it works, take a look at [http://www.novaroma.org/ via_romana/numbers.html]: which includes an implementation of the Kata in javascript. There is no need to be able to convert numbers larger than about 3000. (The Romans themselves didn't tend to go any higher) Parte II: Write a function to convert in the other direction, ie numeral to digit.

Editor's Notes