Skip to content

Commit f0fe7bf

Browse files
authored
Update gcd-sort-of-an-array.py
1 parent de7e5c9 commit f0fe7bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/gcd-sort-of-an-array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Time: O(n * α(n) + m * log(logm)) ~= O(n + m), m is the max of nums
1+
# Time: O(nlogn + n * α(n) + m * log(logm)) ~= O(nlogn + m), m is the max of nums
22
# Space: O(n + m)
33

44
import itertools

0 commit comments

Comments
 (0)