Created
May 30, 2017 00:10
-
-
Save haru01/404a37df66ba332c9aa54b2401169c77 to your computer and use it in GitHub Desktop.
step4 没
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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