Browse Source

UpdateselectionSort.py

minor changes
pull/5/head
Sunny Patel 5 years ago
committed by GitHub
parent
commit
10ebf88461
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      sorting/selectionSort.py

+ 1
- 1
sorting/selectionSort.py View File

@ -17,5 +17,5 @@ def selectionSort(alist):
alist[positionOfMax] = temp
return alist
print(shortBubbleSort(alist))
print(selectionSort(alist))

Loading…
Cancel
Save