Skip to content

Commit d108ff3

Browse files
committed
feat(multiple_LCS): addition done
1 parent d4c3126 commit d108ff3

File tree

3 files changed

+461
-0
lines changed

3 files changed

+461
-0
lines changed

DIRECTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,7 @@
329329
* [Levenshtein Distance](https://github.com/TheAlgorithms/Rust/blob/master/src/string/levenshtein_distance.rs)
330330
* [Lipogram](https://github.com/TheAlgorithms/Rust/blob/master/src/string/lipogram.rs)
331331
* [Manacher](https://github.com/TheAlgorithms/Rust/blob/master/src/string/manacher.rs)
332+
* [Multiple Longest Common Subsequence](https://github.com/TheAlgorithms/Rust/blob/master/src/string/multiple_longest_common_subsequence.rs)
332333
* [Palindrome](https://github.com/TheAlgorithms/Rust/blob/master/src/string/palindrome.rs)
333334
* [Pangram](https://github.com/TheAlgorithms/Rust/blob/master/src/string/pangram.rs)
334335
* [Rabin Karp](https://github.com/TheAlgorithms/Rust/blob/master/src/string/rabin_karp.rs)

src/string/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ mod knuth_morris_pratt;
1212
mod levenshtein_distance;
1313
mod lipogram;
1414
mod manacher;
15+
mod multiple_longest_common_subsequence;
1516
mod palindrome;
1617
mod pangram;
1718
mod rabin_karp;
@@ -39,6 +40,7 @@ pub use self::knuth_morris_pratt::knuth_morris_pratt;
3940
pub use self::levenshtein_distance::{naive_levenshtein_distance, optimized_levenshtein_distance};
4041
pub use self::lipogram::is_lipogram;
4142
pub use self::manacher::manacher;
43+
pub use self::multiple_longest_common_subsequence::multiple_longest_common_subsequence;
4244
pub use self::palindrome::is_palindrome;
4345
pub use self::pangram::is_pangram;
4446
pub use self::pangram::PangramStatus;

0 commit comments

Comments
 (0)