Created
November 10, 2021 00:57
-
-
Save alpaylan/d4b79f19ff5f50c042c64bb8c9bb8047 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
| def sort_test_1(): | |
| l = [2, 1, 3, 4] | |
| sorted_l = dummy_sort(l) | |
| assert sorted_l == [1, 2, 3, 4] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment