Skip to content

Commit

Permalink
Update 167TwoSumII1.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleHoNguyen authored Sep 14, 2024
1 parent e10e89f commit 064cd31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 167TwoSumII1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 167. Two Sum II - Input Array Is Sorted

labels: Two-Pointers, Medium
labels: TwoPointers, Medium

Time Completed: 23:05 minutes

Expand Down Expand Up @@ -38,4 +38,4 @@ def twoSum(self, numbers: List[int], target: int) -> List[int]:
elif currentSum > target:
index2 -= 1
else:
index1 += 1
index1 += 1

0 comments on commit 064cd31

Please sign in to comment.