Skip to content
Snippets Groups Projects
Commit d1f62643 authored by Vilho Kivihalme's avatar Vilho Kivihalme
Browse files

removed tracker from un-analyzed code

parent aa6443e7
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ def swap(A,i,j):
"""
naiivi toteutus kuplalajittelusta. Aina O(n^2)
"""
def naive_bubble_sort(A, c = Tracker()):
def naive_bubble_sort(A):
for _ in range(len(A)):
for j in range(len(A)-1):
if A[j] > A[j+1]:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment