Skip to content

Commit 9abe54d

Browse files
Kush1101cclauss
andauthored
Update other/triplet_sum.py
Co-authored-by: Christian Clauss <[email protected]>
1 parent 3d6a4fe commit 9abe54d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

other/triplet_sum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
we are required to find a triplet from the array such that it's sum is equal to
44
the target.
55
"""
6-
from typing import List, Tuple
76
from itertools import permutations
8-
from timeit import repeat
97
from random import randint
8+
from timeit import repeat
9+
from typing import List, Tuple
1010

1111

1212
def make_dataset() -> Tuple[List[int], int]:

0 commit comments

Comments
 (0)