Skip to content

Instantly share code, notes, and snippets.

@Abhayparashar31
Last active August 15, 2021 04:36
Show Gist options
  • Save Abhayparashar31/4e6260938e827ca426239350f844f171 to your computer and use it in GitHub Desktop.
Save Abhayparashar31/4e6260938e827ca426239350f844f171 to your computer and use it in GitHub Desktop.
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)
------------------------------------------------
[1, 3, 5, 6, 8]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment