We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
给定一个不含重复数字的数组 nums ,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。
示例 1:
输入:nums = [1,2,3] 输出:[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
示例 2:
输入:nums = [0,1] 输出:[[0,1],[1,0]]
示例 3:
输入:nums = [1] 输出:[[1]]
The text was updated successfully, but these errors were encountered:
/** * @param {number[]} nums * @return {number[][]} */ var permute = function (nums) { const len = nums.length; const result = []; function backtrack(used, path) { if (path.length === len) { result.push(path) return } for (let i = 0; i < len; i++) { if (used[i]) continue used[i] = true backtrack(used, [...path, nums[i]]) used[i] = false } } backtrack([], []) return result };
Sorry, something went wrong.
No branches or pull requests
给定一个不含重复数字的数组 nums ,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。
示例 1:
示例 2:
示例 3:
The text was updated successfully, but these errors were encountered: