1556. Thousand Separator
Easy
Given an integer n
, add a dot (".") as the thousands separator and return it in string format.
Example 1:
Example 2:
Constraints:
0 <= n <= 231 - 1
解題
Last updated
Easy
Given an integer n
, add a dot (".") as the thousands separator and return it in string format.
Example 1:
Example 2:
Constraints:
0 <= n <= 231 - 1
Last updated