문제 https://leetcode.com/problems/smallest-string-with-a-given-numeric-value/ Smallest String With A Given Numeric Value - 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 { public String getSmallestString(int n, int k) { int remain = k - n; char[] array = new cha..