Skip to content

Instantly share code, notes, and snippets.

@alpaylan
Created November 10, 2021 00:57
Show Gist options
  • Select an option

  • Save alpaylan/d4b79f19ff5f50c042c64bb8c9bb8047 to your computer and use it in GitHub Desktop.

Select an option

Save alpaylan/d4b79f19ff5f50c042c64bb8c9bb8047 to your computer and use it in GitHub Desktop.
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