Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added shell sort and selection sort in Python #814

Merged
merged 4 commits into from
May 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update SelectionSort.py
  • Loading branch information
yanglbme authored May 9, 2022
commit 1f30c31de093fe84b6fddcca6e51d6b2cf72d205
6 changes: 3 additions & 3 deletions basic/sorting/SelectionSort/SelectionSort.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def selectionSort(arr):
min_index = j
arr[min_index], arr[i] = arr[i], arr[min_index]

array = [26, 11, 99 , 33, 69, 77, 55, 56, 67]
selectionSort(array)


arr = [26, 11, 99, 33, 69, 77, 55, 56, 67]
selectionSort(arr)
print(arr)