#273
Integer to English Words
international master · 1925 · lc hard +32 · verified · 34.8% accepted · 3,839 likes · top 12%
Description
Convert a non-negative integer num into its English word representation and return the result as a string.
Example 1:
Input: num = 123
Output: "One Hundred Twenty Three"
Example 2:
Input: num = 12345
Output: "Twelve Thousand Three Hundred Forty Five"
Example 3:
Input: num = 1234567
Output: "One Million Two Hundred Thirty Four Thousand Five Hundred Sixty Seven"
Code
1
2
3