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
原题链接:https://leetcode-cn.com/problems/subsets/
解题思路:
/** * @param {number[]} nums * @return {number[][]} */ var subsets = function (nums) { // 储存结果的数组 // 初始状态要含有一个空数组,即无任何元素的子集 // 空数组的存在是为了开启第二层循环 let result = [[]]; // 每次从nums中取出一个元素,作为新子集的元素 for (let i = 0; i < nums.length; i++) { // 获取当前的子集数量进行遍历,避免循环过程中result长度不断变化 const length = result.length; // 在现有子集的基础上,添加当前元素,生成新的子集 for (let j = 0; j < length; j++) { result.push([...result[j], nums[i]]); } } return result; };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原题链接:https://leetcode-cn.com/problems/subsets/
解题思路:
The text was updated successfully, but these errors were encountered: