LeetCode 273. Integer to English Words in F#
URL
Integer to English Words - LeetCode
Code
https://github.com/syohex/dotnet-study/tree/master/fsharp/leetcode/challenge/202408/integer_to_english_words/main.fsx
open System
let numberToWords (num: int) : string =
let ones =
[| "One"; "...
syohex.hashnode.dev1 min read