-
-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy path273.java
More file actions
78 lines (74 loc) · 3.53 KB
/
273.java
File metadata and controls
78 lines (74 loc) · 3.53 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
__________________________________________________________________________________________________
sample 1 ms submission
class Solution {
private static 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 static final String[] TENS = {"", "Ten", "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety"};
private static final String[] BIG = {"", "Thousand", "Million", "Billion"};
private static final String HUNDRED = "Hundred";
public String numberToWords(int num) {
if (num == 0) return "Zero";
StringBuilder sb = new StringBuilder();
int bigCount = 0;
while (num != 0) {
int group = num % 1000;
if (group > 0) sb.insert(0, BIG[bigCount]);
if (group > 0 && bigCount > 0) {
sb.insert(0, " ");
}
if (group % 100 < 20) {
sb.insert(0, LESS_THAN_20[group % 100]);
if (group % 100 > 0) sb.insert(0, " ");
} else {
sb.insert(0, LESS_THAN_20[group % 10]);
if (group % 10 > 0) sb.insert(0, " ");
sb.insert(0, TENS[(group % 100) / 10]);
if ((group % 100) / 10 > 0)sb.insert(0, " ");
}
if (group >= 100) {
sb.insert(0, HUNDRED);
sb.insert(0, " ");
sb.insert(0, LESS_THAN_20[group/100]);
sb.insert(0, " ");
}
num /= 1000;
bigCount++;
}
return sb.toString().trim();
}
}
__________________________________________________________________________________________________
sample 34380 kb submission
class Solution {
private static final String[] LESS_THAN_20 = {"", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine", "Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen"}; // never include "Zero" in the result
private static final String[] TENS = {"", "", "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety"}; // no need to include "Ten" because numbers less than 20 will be handled by belowTwenty
public String numberToWords(int num) {
/**
* The only possibility to include "Zero" in the result is that the number itself is 0.
*/
if (num == 0) {
return "Zero";
}
return helper(num);
}
private static String helper(int num) {
String result;
if (num < 20) {
result = LESS_THAN_20[num];
} else if (num < 100) {
result = TENS[num / 10] + " " + LESS_THAN_20[num % 10];
} else if (num < 1000) {
result = helper(num / 100) + " Hundred " + helper(num % 100);
} else if (num < 1000000) {
result = helper(num / 1000) + " Thousand " + helper(num % 1000);
} else if (num < 1000000000) {
result = helper(num / 1000000) + " Million " + helper(num % 1000000);
} else {
result = helper(num / 1000000000) + " Billion " + helper(num % 1000000000);
}
/**
* Trim the result at each recursion because a number trailing 0s will result in empty space at the end.
*/
return result.trim();
}
}
__________________________________________________________________________________________________