순열 만들기 서로 다른 정수를 입력받아 가능한 모든 순열을 리턴하라.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]]순열이 만들어지는 것에 대해 먼저 이해할 필요가 있다. 요소가 3개 일때 순열의 수는 3! / (3 - 3)! ..