Skip to content

Commit 54ccb53

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 478cc36 commit 54ccb53

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

data_structures/arrays/find_triplets_with_0_sum.py

+2
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ def find_triplets_with_0_sum_hashing(arr: list[int]) -> list[list[int]]:
9191
9292
3. Handles Duplicate efficiently by skipping repeated values.
9393
"""
94+
95+
9496
def find_triplets_with_0_sum_two_pointer(nums: list[int]) -> list[list[int]]:
9597
"""
9698
Function for finding the triplets with a given sum in the array using hashing.

0 commit comments

Comments
 (0)