1.题目描述
Given a collection of distinct integers, return all possible permutations.
给定一个没有重复数字的序列,返回其所有可能的全排列。
Example:
Input: [1,2,3]
Output:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]
2.Solutions
1 | public static List<List<Integer>> permute(int[] nums) { |