We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abbd181 commit a793068Copy full SHA for a793068
examples/practice2_d_maxflow.rs
@@ -1,7 +1,8 @@
1
use ac_library_rs::MfGraph;
2
use std::io::Read;
3
-use std::iter;
4
+#[allow(clippy::many_single_char_names)]
5
+#[allow(clippy::needless_range_loop)]
6
fn main() {
7
const N: usize = 128;
8
src/maxflow.rs
@@ -1,3 +1,4 @@
+#![allow(dead_code)]
use crate::internal_queue::SimpleQueue;
use std::cmp::min;
use std::iter;
0 commit comments