99 道厄姆难题/第 95 题
外观
< 99 道厄姆难题
将数字写成英语单词,例如将 175 写成“one hundred seventy-five”。
# # # 这是一些占位符 # # #
Example in Elm:
import Html exposing (text)
import List
f : Int -> Int
-- your implementation goes here
main = text (toString (f 0))
结果
4
将数字写成英语单词,例如将 175 写成“one hundred seventy-five”。
# # # 这是一些占位符 # # #
Example in Elm:
import Html exposing (text)
import List
f : Int -> Int
-- your implementation goes here
main = text (toString (f 0))
结果
4