1
0
Fork 0

Getting rid of useless printing.

This commit is contained in:
Florent DENEF 2022-12-27 11:17:16 +01:00
parent 02648af3b3
commit f2836e45e1
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ fn transpose_rev<T>(v: Vec<Vec<Option<T>>>) -> Vec<VecDeque<T>> {
.max_by(|x, y| x.len().cmp(&y.len()))
.unwrap_or_else(|| panic!(""))
.len();
println!("{len}, {}", v[0].len());
let mut iters: Vec<_> = v.into_iter().map(|n| n.into_iter()).collect();
(0..len)
.map(|_| {