Problem Description
Given an integer n, add a dot (".") as the thousands separator and return it in string format.
Key Insights
- The problem requires formatting an integer to include thousands separators.
- The dot should be added every three digits from the right.
- Edge cases include handling small numbers (less than 1000) that do not require any separators.
Space and Time Complexity
Time Complexity: O(log n) - The number of digits in n determines the number of iterations needed to format the string. Space Complexity: O(k) - Where k is the number of characters in the resulting string.
Solution
To solve the problem, the approach involves:
- Converting the integer to a string to manipulate its characters.
- Iterating through the string representation of the number from the end towards the beginning.
- Inserting a dot (".") after every three digits.
- Joining the processed characters back into a single string and returning it.
This approach uses a simple loop and string operations, ensuring that the algorithm remains efficient and easy to understand.