Update 0078.子集.md

No need to sort
This commit is contained in:
Yang 2021-05-26 19:08:46 -04:00 committed by GitHub
parent b2c04ffbca
commit 3b50354577
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -186,7 +186,6 @@ class Solution {
result.add(new ArrayList<>());
return result;
}
Arrays.sort(nums);
subsetsHelper(nums, 0);
return result;
}