Last active
August 15, 2021 04:36
-
-
Save Abhayparashar31/4e6260938e827ca426239350f844f171 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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