forked from ely-mitu/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ThousandSeparator.cpp
52 lines (49 loc) · 1.1 KB
/
ThousandSeparator.cpp
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
// Source : https://leetcode.com/problems/thousand-separator/
// Author : Hao Chen
// Date : 2020-10-03
/*****************************************************************************************************
*
* Given an integer n, add a dot (".") as the thousands separator and return it in string format.
*
* Example 1:
*
* Input: n = 987
* Output: "987"
*
* Example 2:
*
* Input: n = 1234
* Output: "1.234"
*
* Example 3:
*
* Input: n = 123456789
* Output: "123.456.789"
*
* Example 4:
*
* Input: n = 0
* Output: "0"
*
* Constraints:
*
* 0 <= n < 2^31
******************************************************************************************************/
class Solution {
public:
string thousandSeparator(int n) {
if (n==0) return "0";
int cnt=0;
string result;
while( n > 0 ){
int m = n % 10;
result.insert(result.begin(), ('0' + m) );
cnt++;
n /= 10;
if (cnt % 3 == 0 && n > 0) {
result = '.' + result;
}
}
return result;
}
};