TPK algorithm: Difference between revisions

Content deleted Content added
Ricvelozo (talk | contribs)
Line 122:
 
a.into_iter().enumerate().rev().for_each(|(i, t)| match f(t) {
y if y > 400.0 => println!("{i} TOO LARGE", i),
y => println!("{i} {y}", i, y),
});
}