Skip to content

Commit 0d1857d

Browse files
Fix github stupid bug
1 parent 143567d commit 0d1857d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Interview/Algorithm/algorithm_prepare.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1360,8 +1360,10 @@ public:
13601360

13611361
private:
13621362
string digits[20] = {"", "One ", "Two ", "Three ", "Four ", "Five ", "Six ", "Seven ", "Eight ", "Nine ", "Ten ", "Eleven ", "Twelve ", "Thirteen ", "Fourteen ", "Fifteen ", "Sixteen ", "Seventeen ", "Eighteen ", "Nineteen "};
1363+
13631364
string tens[10] = {"", "Ten ", "Twenty ", "Thirty ", "Forty ", "Fifty ", "Sixty ", "Seventy ", "Eighty ", "Ninety "};
1364-
pair<int, string> units[4] = {{1000000000, "Billion "}, {1000000, "Million "}, {1000, "Thousand "}, {100, "Hundred "}};
1365+
1366+
pair<int, string> units[4] = {{1000*1000*1000, "Billion "}, {1000*1000, "Million "}, {1000, "Thousand "}, {100, "Hundred "}};
13651367
};
13661368
```
13671369
### **Reorder list**

0 commit comments

Comments
 (0)