Skip to content

Instantly share code, notes, and snippets.

@haru01
Created May 30, 2017 00:10
Show Gist options
  • Save haru01/404a37df66ba332c9aa54b2401169c77 to your computer and use it in GitHub Desktop.
Save haru01/404a37df66ba332c9aa54b2401169c77 to your computer and use it in GitHub Desktop.
step4 没
package roman
func ToRoman(in uint16) string {
numbers := map[uint16]string{
1: "I",
5: "V",
}
return numbers[in]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment