Skip to content

Commit 0c9f9b6

Browse files
authored
Merge pull request #26 from koba-e964/feature/string
Implement functions in string.hpp
2 parents 2d43cf6 + 4324451 commit 0c9f9b6

File tree

2 files changed

+393
-0
lines changed

2 files changed

+393
-0
lines changed

src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ mod mincostflow;
88
mod modint;
99
mod scc;
1010
mod segtree;
11+
#[allow(clippy::many_single_char_names)]
1112
mod string;
1213
mod twosat;
1314

@@ -18,3 +19,7 @@ pub(crate) mod internal_scc;
1819
pub(crate) mod internal_type_traits;
1920

2021
pub use fenwicktree::FenwickTree;
22+
pub use string::{
23+
lcp_array, lcp_array_arbitrary, suffix_array, suffix_array_arbitrary, suffix_array_manual,
24+
z_algorithm, z_algorithm_arbitrary,
25+
};

0 commit comments

Comments
 (0)