Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Latest commit

 

History

History
executable file
·
22 lines (18 loc) · 371 Bytes

File metadata and controls

executable file
·
22 lines (18 loc) · 371 Bytes

题目

Given a collection of distinct numbers, return all possible permutations.

For example, [1,2,3] have the following permutations:

[
  [1,2,3],
  [1,3,2],
  [2,1,3],
  [2,3,1],
  [3,1,2],
  [3,2,1]
]

解题思路

按照手写排列的思路,编写递归程序即可。

总结