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.
#[allow]
1 parent ad3a68d commit 33a0d42Copy full SHA for 33a0d42
src/lib.rs
@@ -8,7 +8,6 @@ mod mincostflow;
8
mod modint;
9
mod scc;
10
mod segtree;
11
-#[allow(clippy::many_single_char_names)]
12
mod string;
13
mod twosat;
14
src/string.rs
@@ -1,3 +1,5 @@
1
+#![allow(clippy::many_single_char_names)]
2
+
3
fn sa_naive<T: Ord>(s: &[T]) -> Vec<usize> {
4
let n = s.len();
5
let mut sa: Vec<usize> = (0..n).collect();
0 commit comments