We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e5e7e4 commit b753f30Copy full SHA for b753f30
3sum/taurus09318976.py
@@ -1,5 +1,5 @@
1
-# 이 문제는 1)정렬을 통해 중복을 처리, 2)투 포인터를 사용하여 효율적으로 탐색,
2
-#3) 합이 0보다 작으면 left를 +1, 크면 right를 -1이동, 4)중복된
+# 이 문제는 1)정렬을 통해 중복을 처리, 2)투 포인터를 사용하여 좀 더 효율적으로 탐색,
+#3) 합이 0보다 작으면 left를 +1, 크면 right를 -1이동, 4)중복된 조합은 건너뛰기
3
4
class Solution:
5
def threeSum(self, nums: List[int]) -> List[List[int]]:
0 commit comments