Hi, this is Shunchi!

  • Home

  • Tags0

  • Archives267

  • Categories0

  • Curricula

  • DSA

  • LeetCode_Notes

  • Interviews

  • General

  • Resume

273. Integer to English Words

Posted on 2020-07-11 | Edited on 2021-01-22

LeetCode

link
String + Recursion

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class Solution {
// math: O(1)
private final String[] LESS_THAN_20 = {"", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen"};
private final String[] TENS = {"", "Ten", "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety"};

public String numberToWords(int num) {
if (num == 0) return "Zero";
return help(num);
}

String help(int num) {
String ret = "";
if (num < 20) {
ret = LESS_THAN_20[num];
} else if (num < 100) {
ret = TENS[num / 10] + " " + help(num % 10);
} else if (num < 1000) {
ret = help(num / 100) + " Hundred " + help(num % 100);
} else if (num < 1000000) {
ret = help(num / 1000) + " Thousand " + help(num % 1000);
} else if (num < 1000000000) {
ret = help(num / 1000000) + " Million " + help(num % 1000000);
} else {
ret = help(num / 1000000000) + " Billion " + help(num % 1000000000);
}
return ret.trim();
}
}

<1…606162…267>
ShunchiZhou

ShunchiZhou

267 posts
RSS
GitHub E-Mail Gitbook Linkedin
© 2024 ShunchiZhou
Powered by Hexo v5.4.0
|
0%