Permutations
Given a collection ofdistinctnumbers, return all possible permutations.
For example,
[1,2,3]
have the following permutations:
分析
还是在dfs里for loop,从0->n不包括已经加入的数字。 Path.size() == nums.length 就可以加入。不是pos == nums.length
答案
Last updated
Given a collection ofdistinctnumbers, return all possible permutations.
For example,
[1,2,3]
have the following permutations:
分析
还是在dfs里for loop,从0->n不包括已经加入的数字。 Path.size() == nums.length 就可以加入。不是pos == nums.length
答案
Last updated