diff --git a/src/bubble_sort!.jl b/src/bubble_sort!.jl index d244430..0c5734e 100644 --- a/src/bubble_sort!.jl +++ b/src/bubble_sort!.jl @@ -1,7 +1,7 @@ function bubble_sort!(X) for i in 1:length(X), j in 1:length(X)-i if X[j] > X[j+1] - (X[j+1], X[j]) = (X[j], X[j+1]) + X[j+1], X[j] = X[j], X[j+1] end end -end \ No newline at end of file +end