Skip to content

Commit c80deb5

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

data_structures/arrays/find_triplets_with_0_sum.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ def find_triplets_with_0_sum_hashing(arr: list[int]) -> list[list[int]]:
7979

8080
# Return all the triplet combinations.
8181
return output_arr
82-
82+
83+
8384
def find_triplets_with_0_sum_two_pointers(nums: list[int]) -> list[list[int]]:
8485
"""
8586
Finds all unique triplets in the array which gives the sum of zero

0 commit comments

Comments
 (0)