Skip to content

Commit 9d1da98

Browse files
Add missing blank line for code readability
A blank line was added before the function definition to improve code readability. This change aligns with Python's PEP 8 style guidelines for consistent spacing.
1 parent 1fdd7c6 commit 9d1da98

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Two Pointers/two_sum_II.py

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# If the array was not sorted, we would have to sort it first, and
88
# incur a O(n log n) time complexity.
99

10+
1011
def two_sum_II(nums: List[int], target: int) -> List[int]:
1112
n = len(nums)
1213

0 commit comments

Comments
 (0)