Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 496 Bytes

File metadata and controls

34 lines (22 loc) · 496 Bytes

题目描述

给定一个没有重复数字的序列,返回其所有可能的全排列。

示例:

输入: [1,2,3]
输出:
[
  [1,2,3],
  [1,3,2],
  [2,1,3],
  [2,3,1],
  [3,1,2],
  [3,2,1]
]

解题思路

具体解法

Golang