Permutations
Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any order.
Permutations

Given an array nums of distinct integers, return all the possible permutations. You can return the answer in any order.

Example 1:
Input: [1,2,3]
Output: [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
Input
arr =[1,2,3]

Check length: 0 == 3

Candidates

1

2

3

Current Combination

Empty

Sum: 0
Found Solutions
Variables
No variables to display
DepthFunction Call
Stack empty
0/96