Browse Source

Add files via upload

#1
selectionsort
pull/15/head
SOMIL JAIN 5 years ago
committed by GitHub
parent
commit
42786e73ed
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 0 deletions
  1. +16
    -0
      sorting/selectionsort.py

+ 16
- 0
sorting/selectionsort.py View File

@ -0,0 +1,16 @@
#selection sorting
import sys
A = [6, 2, 1, 3, 4]
for i in range(len(A)):
min_index = i
for j in range(i+1, len(A)):
if A[min_index] > A[j]:
min_index = j
A[i], A[min_index] = A[min_index], A[i]
print ("Sorted array")
for i in range(len(A)):
print("%d" %A[i])

Loading…
Cancel
Save