添加0015.三数之和 Java版本

添加0015.三数之和 Java版本
This commit is contained in:
Powerstot
2021-05-12 13:23:27 +08:00
committed by GitHub
parent 4a4236fdb4
commit 4ceab17363

View File

@ -207,7 +207,7 @@ class Solution {
while (right > left && nums[right] == nums[right - 1]) right--;
while (right > left && nums[left] == nums[left + 1]) left++;
right--;
right--;
left++;
}
}