We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fdc049e + 12c212e commit ad148b0Copy full SHA for ad148b0
src/lib.rs
@@ -8,7 +8,6 @@ pub mod mincostflow;
8
pub mod modint;
9
pub mod scc;
10
pub mod segtree;
11
-#[allow(clippy::many_single_char_names)]
12
pub mod string;
13
pub 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