Skip to content

Commit 79932aa

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

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sorts/flash_sort.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Flash Sort Algorithm
2-
#
2+
#
33
# Flash Sort is a distribution sorting algorithm designed for large arrays with elements
44
# that are relatively uniformly distributed. The algorithm can achieve close to O(n) time
55
# complexity under favorable conditions.
@@ -22,6 +22,7 @@
2222
# Reference:
2323
# https://en.wikipedia.org/wiki/Flashsort
2424

25+
2526
def flash_sort(array):
2627
"""
2728
Flash Sort algorithm.

0 commit comments

Comments
 (0)