[LeetCode] 1663. Smallest String With A Given Numeric Value - 문제풀이
Description a~z(1~26)까지라고 할때 n개의 알파벳으로 k만큽 합계를 나타낼 수 사전순으로 가장 작은 문자열의 알파벳을 반환하는 문제입니다. The numeric value of a lowercase character is defined as its position (1-indexed) in the alphabet, so the numeric value of a is 1, the numeric value of b is 2, the numeric value of c is 3, and so on. The numeric value of a string consisting of lowercase characters is defined as the sum of its characters' numer..