From 5db3ee78cfa8618265deb162b0ba64e8a7ad04cc Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 17 Apr 2016 23:31:13 +0300 Subject: selection_sort: fix codename --- algorithms/impl/selection_sort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'algorithms/impl') diff --git a/algorithms/impl/selection_sort.py b/algorithms/impl/selection_sort.py index d48c058..27b319f 100644 --- a/algorithms/impl/selection_sort.py +++ b/algorithms/impl/selection_sort.py @@ -18,5 +18,5 @@ if __name__ == '__main__': else: from algorithms.algorithm import SortingAlgorithm _ALGORITHMS = [ - SortingAlgorithm('selection', 'Selection sort', selection_sort), + SortingAlgorithm('selection_sort', 'Selection sort', selection_sort), ] -- cgit v1.2.3