Skip to content

Commit abae1a4

Browse files
refactor 15
1 parent 6a5d65f commit abae1a4

File tree

1 file changed

+1
-0
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+1
-0
lines changed

src/main/java/com/fishercoder/solutions/_15.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public class _15 {
2626
public static class Solution1 {
2727
public List<List<Integer>> threeSum(int[] nums) {
2828
Arrays.sort(nums);
29+
2930
List<List<Integer>> result = new ArrayList<>();
3031
for (int i = 0; i < nums.length - 2; i++) {
3132
if (i >= 1 && nums[i] == nums[i - 1]) {

0 commit comments

Comments
 (0)