From 3b50354577cda67d58aa40ad0b171e948bd28184 Mon Sep 17 00:00:00 2001 From: Yang Date: Wed, 26 May 2021 19:08:46 -0400 Subject: [PATCH] =?UTF-8?q?Update=200078.=E5=AD=90=E9=9B=86.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit No need to sort --- problems/0078.子集.md | 1 - 1 file changed, 1 deletion(-) diff --git a/problems/0078.子集.md b/problems/0078.子集.md index a1895eef..17c4fb5c 100644 --- a/problems/0078.子集.md +++ b/problems/0078.子集.md @@ -186,7 +186,6 @@ class Solution { result.add(new ArrayList<>()); return result; } - Arrays.sort(nums); subsetsHelper(nums, 0); return result; }