Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 발더스게이트
- 송리단
- javascript
- 취미
- 코딩테스트
- 천등
- 바질토마토뭐시기
- 발더스모드
- DIY
- 잠실새내
- 밥먹고
- 눈알빠지겠네
- 맛집
- 나쫌
- 메일우유
- 누룽지소금빵
- 뜨아거
- 알고리즘테스트
- 버즈2프로
- 미앤아이
- 하스스톤
- 노노그램
- 메탈퍼즐
- 발더스3
- 서울제빵소
- 게임
- 토이프로젝트
- 코테
- 3d퍼즐
- LeetCode
Archives
- Today
- Total
.Zzumbong
[leetCode/JS] 46. Permutations 본문
문제 설명
Given an array nums
of distinct integers, return all the possible permutations. You can return the answer in any order.
입출력 예
Example 1:
Input: nums = [1,2,3]
Output: [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
Example 2:
Input: nums = [0,1]
Output: [[0,1],[1,0]]
Example 3:
Input: nums = [1]
Output: [[1]]
Constraints
1 <= nums.length <= 6
-10 <= nums[i] <= 10
- All the integers of
nums
are unique.
내 솔루션
- DFS로 풀었다.
var permute = function(nums) {
const answer = [];
const dfs = (cur, rest) => {
if(rest.length === 0) {
answer.push(cur);
return;
}
for (let i = 0; i < rest.length; i++) {
dfs([...cur, rest[i]], [...rest.slice(0, i), ...rest.slice(i + 1)]);
}
}
dfs([], nums);
return answer;
};
최고의 솔루션
- 내가 푼 방법과 방식은 똑같으나
Set
을 사용했다. - 내가
121ms
걸렸는데, 이 방법은78ms
가 걸렸다.
var permute = function(nums) {
const output = []
const recursion = (permutation, set) =>{
if(set.size === 0){
output.push(permutation)
return
}
for(let val of set){
const setCopy = new Set(set)
setCopy.delete(val)
recursion([...permutation, val], setCopy)
}
}
recursion([], new Set(nums))
return output
};
감상평
- DFS의 기본! 수열!
'coding test > leetCode' 카테고리의 다른 글
[leetCode/JS] 14. Longest Common Prefix (0) | 2022.11.24 |
---|---|
[leetCode/JS] 1926. Nearest Exit from Entrance in Maz (0) | 2022.11.24 |
[leetCode/JS] 13. Roman to Integer (0) | 2022.11.24 |
[leetCode/JS] 5. Longest Palindromic Substring (0) | 2022.11.24 |
[leetCode/JS] 224. Basic Calculator (0) | 2022.11.24 |
Comments