diff --git a/problems/0090.子集II.md b/problems/0090.子集II.md index 48085a3f..1ae5c966 100644 --- a/problems/0090.子集II.md +++ b/problems/0090.子集II.md @@ -115,7 +115,7 @@ public: ## 补充 -本题也可以不适用used数组来去重,因为递归的时候下一个startIndex是i+1而不是0。 +本题也可以不使用used数组来去重,因为递归的时候下一个startIndex是i+1而不是0。 如果要是全排列的话,每次要从0开始遍历,为了跳过已入栈的元素,需要使用used。