1556. Thousand Separator
https://leetcode.com/problems/thousand-separator
Description
Given an integer n
, add a dot (".") as the thousands separator and return it in string format.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
0 <= n < 2^31
ac
Last updated