Initial commit

This commit is contained in:
Arjun Patel
2019-02-20 15:09:59 -08:00
commit 6577e0cbea
59 changed files with 2480 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
def quicksort(arr):
pivot = arr[0]
for item in arr[1:]:
if item > pivot: