Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Last active March 28, 2019 11:18
Show Gist options
  • Save ssaurel/53071f09c9511ea2dab5d76023202b5e to your computer and use it in GitHub Desktop.
Save ssaurel/53071f09c9511ea2dab5d76023202b5e to your computer and use it in GitHub Desktop.
Roman Numeral TDD Kata on the SSaurel's Channel
public String intToRoman(int arabic) {
if (arabic == 2) return "II";
return "I";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment