chore: remove debug log

This commit is contained in:
Jan Christian Grünhage 2017-08-27 17:36:44 +02:00
parent 9f847fe038
commit 15d253d49c

View file

@ -18,7 +18,6 @@ impl Algorithm for Insertionsort {
}
vector[i] = smallest_value;
}
println!("{:?}", vector);
}
return Ok(vector);
}