- Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.ts
37 lines (35 loc) · 538 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* # 46. Permutations
*
* Given a collection of **distinct** integers, return all possible permutations.
*
* ## Example
*
* ```bash
* Input: [1,2,3]
* Output:
* [
* [1,2,3],
* [1,3,2],
* [2,1,3],
* [2,3,1],
* [3,1,2],
* [3,2,1],
* ]
* ```
*/
exporttypeSolution=(nums: number[])=>number[][];
/**
* @date
* @time
* @space
*/
exportconstpermute=(nums: number[]): number[][]=>{
constresult: number[][]=[];
// 1 -> n
//
constloop=()=>{
// 回溯
};
returnresult;
};