Skip to content

Instantly share code, notes, and snippets.

View christianrojas's full-sized avatar

Christian Rojas christianrojas

View GitHub Profile

Keybase proof

I hereby claim:

  • I am christianrojas on github.
  • I am christianrojas (https://keybase.io/christianrojas) on keybase.
  • I have a public key ASDb2BlZo4vBjG4-0GN5MGF7iNmW69uXM0nnDC3v8jxhdAo

To claim this, I am signing this object:

@christianrojas
christianrojas / README.md
Last active September 30, 2021 16:11
VSCode Setup
@christianrojas
christianrojas / calculate_roman_number.rb
Last active October 21, 2022 20:40
Calculate Roman number
# https://www.hackerrank.com/contests/modena-coding-april-2017/challenges/roman-number/problem
ROMAN_NUMBERS = {
1000 => "M",
900 => "CM",
500 => "D",
400 => "CD",
100 => "C",
90 => "XC",
50 => "L",