Skip to content
Permalink
Browse files
Tested QuickSort
  • Loading branch information
hortonr6 committed Jul 22, 2019
1 parent 4d85991 commit 27d7d220aa6db1e12fb26f7c630e5c2dc86f59b4
Showing 1 changed file with 4 additions and 2 deletions.
@@ -101,6 +101,8 @@ def partition(data, start, end):

inputData = [3, 8, 42, 9, 31, 12, 25]
print(inputData)
#print(bubbleSort(inputData))
print(mergeSort(inputData))
#bubbleSort(inputData)
#mergeSort(inputData)
quickSort(inputData, 0, len(inputData) - 1)
print(inputData)

0 comments on commit 27d7d22

Please sign in to comment.