Skip to content

Latest commit

 

History

History

thousand-separator

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

< Previous                  Next >

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"

 

Constraints:

  • 0 <= n <= 231 - 1

Related Topics

[String]

Hints

Hint 1 Scan from the back of the integer and use dots to connect blocks with length 3 except the last block.