Add sorting algorithm visualisations and EXE

This commit is contained in:
2019-06-25 18:52:52 +01:00
parent 2d05286a8f
commit 391d660c86
618 changed files with 1524 additions and 3 deletions

View File

@@ -4,6 +4,5 @@ for i in range(0, len(array)):
j = 0
while array[i] > array[j]:
j += 1
if (j - 1) != i:
array.insert(j, array.pop(i))
array.insert(j, array.pop(i))
print("New array:", array)