Skip to content

Commit 19c8047

Browse files
committed
Remove debug print
1 parent 8994ee3 commit 19c8047

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lib/cpalgo/util/quick_select.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ struct QuickSelect {
4242
}
4343
auto pivot_index = pivot_of(array, begin, end);
4444
pivot_index = partition(array, begin, end, k, array[pivot_index]);
45-
std::cout << pivot_index << " " << k << std::endl;
4645
if (pivot_index == k) {
4746
return k;
4847
} else if (pivot_index < k) {

0 commit comments

Comments
 (0)