[LeetCode 해석 및 풀이] 46. Permutations(순열)
LeetCode 문제 해석 및 풀이 방법 문제 46. Permutations(순열)난이도 : 중간🟡 바로가기 문제 설명영문Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any order. 한글고유한 정수의 배열 nums 주어지면 가능한 모든 순열을 반환합니다. 어떤 순서 로든 답변을 반환할 수 있습니다. 제한조건1 -10 All the integers of nums are unique. 입출력 예입력출력nums = [1,2,3][[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]nums = [0,1][[0,1],[1,0]..
2024. 8. 6.