https://leetcode.com/problems/thousand-separator/ Thousand Separator - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com ==문제== 천 단위마다 콤마(,)가 아닌 온점(.)을 찍어주면 된다. ==코드== class Solution: def thousandSeparator(self, n: int) -> str: n = str(n) length = len(n) if length