GitHub - keon/algorithms: Minimal examples of data structures and algorithms in Python (original) (raw)

Minimal and clean example implementations of data structures and algorithms in Python 3.

Thanks for your interest in contributing! There are many ways to contribute to this project. Get started here

from algorithms.sort import merge_sort

if name == "main": my_list = [1, 8, 3, 5, 6] my_list = merge_sort(my_list) print(my_list)