Permutations
Problem
Input: nums = [1,2,3] Output: [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]Input: nums = [0,1] Output: [[0,1],[1,0]]Input: nums = [1] Output: [[1]]
Pseudocode
Solution
Time and Space Complexity
Time
Space
Last updated