-
leetcode.com/problems/combination-sum-iii/submissions/
Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique set of numbers.
Note:
- All numbers will be positive integers.
- The solution set must not contain duplicate combinations.
조합으로 풀었다... 사실 시간초과나거나 그럴줄 알고 순열조합은 안쓰려고했는데 1~9라는 숫자라서 혹시나 해서 했더니 통과되서 당황..
'2020년 > 코테' 카테고리의 다른 글
[코테 연습] 가장 큰수 (0) 2020.09.15 [코테 연습] Bulls and Cows (0) 2020.09.14 [코테 연습] Compare Version Numbers (0) 2020.09.13 [코테 연습] Maximum Number of Coins You Can Get (0) 2020.09.09 [코테 연습] Largest Perimeter Triangle (0) 2020.09.09