[LeetCode] 46. Permutations - 파이썬(Python)
·
Solving Algorithm Problem/LeetCode
문제 링크 : https://leetcode.com/problems/permutations/ Permutations - 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 유형 : 백트래킹(BackTracking) 문제 설명 중복되지 않는 정수들이 담긴 배열 nums가 주어질 때, 만들 수 있는 모든 순열을 return하는 문제이다. 임의의 순서로 return하면 된다. Example 1) Input: nums = [1,2,3] Output: [[1,2,3],[1,3..