We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36af932 commit f535f5cCopy full SHA for f535f5c
1 file changed
algorithms/arrays/two_sum.py
@@ -88,3 +88,7 @@ def wrap():
88
t = timeit.timeit(wraped(two_sum, array, target))
89
90
print("t(brute_force)={}\nt(using_sort)={}\nt={}".format(t_brute_force, t_using_sort, t))
91
+
92
93
+if __name__ == '__main__':
94
+ analysis()
0 commit comments