Skip to content

Commit 9b75e89

Browse files
authored
Update Solution.java
1 parent 0ac9def commit 9b75e89

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src.save/main/java/g0001_0100/s0018_4sum/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public List<List<Integer>> fourSum(int[] nums, int target) {
3434
continue;
3535
}
3636
while (left < right) {
37-
3837
int sum = nums[left] + nums[right] + half;
3938
if (sum == target) {
4039
ret.add(Arrays.asList(nums[left++], nums[right--], nums[i], nums[j]));

0 commit comments

Comments
 (0)