Python/divide_and_conquer
Christian Clauss b9e5259aeb
Fix long line, tests (#2123)
* Fix long line

* updating DIRECTORY.md

* Add doctest

* ...

* ...

* Update tabu_search.py

* space

* Fix doctest

    >>> find_neighborhood(['a','c','b','d','e','a'])  # doctest: +NORMALIZE_WHITESPACE
    [['a','e','b','d','c','a',90], [['a','c','d','b','e','a',90],
     ['a','d','b','c','e','a',93], ['a','c','b','e','d','a',102],
     ['a','c','e','d','b','a',113], ['a','b','c','d','e','a',93]]

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: John Law <johnlaw.po@gmail.com>
2020-06-16 14:29:13 +02:00
..
closest_pair_of_points.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
convex_hull.py Fix long line, tests (#2123) 2020-06-16 14:29:13 +02:00
inversions.py psf/black code formatting (#1277) 2019-10-05 10:14:13 +05:00
max_subarray_sum.py Tighten up psf/black and flake8 (#2024) 2020-05-22 08:10:11 +02:00
mergesort.py Merge sort Update variable names (#2032) 2020-05-24 08:38:43 +02:00
power.py Added Strassen divide and conquer algorithm to multiply matrices. (#1648) 2020-01-12 09:34:10 +05:30
strassen_matrix_multiplication.py Wrap lines that go beyond GitHub Editor (#1925) 2020-05-01 23:36:35 +02:00