출처: https://leetcode.com/problems/integer-to-roman/ Integer to Roman - 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 입력된 정수를 로마표기법으로 변환하는 문제였다. 1~3까지는 1의 개수로 표현 4는 1과 5로 표현 5는 5 6~8까지는 5와 1의 개수로 표현 9는 1과 10으로 표현 어차피 단위별 문자가 정해져있으니 맨 앞의 지수(?)와 자릿수를 가지고 문자를 판별해서 스트링을 합쳐주는 방식으로 해결했다..