File tree Expand file tree Collapse file tree 3 files changed +461
-0
lines changed Expand file tree Collapse file tree 3 files changed +461
-0
lines changed Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ mod knuth_morris_pratt;
1212mod levenshtein_distance;
1313mod lipogram;
1414mod manacher;
15+ mod multiple_longest_common_subsequence;
1516mod palindrome;
1617mod pangram;
1718mod rabin_karp;
@@ -39,6 +40,7 @@ pub use self::knuth_morris_pratt::knuth_morris_pratt;
3940pub use self :: levenshtein_distance:: { naive_levenshtein_distance, optimized_levenshtein_distance} ;
4041pub use self :: lipogram:: is_lipogram;
4142pub use self :: manacher:: manacher;
43+ pub use self :: multiple_longest_common_subsequence:: multiple_longest_common_subsequence;
4244pub use self :: palindrome:: is_palindrome;
4345pub use self :: pangram:: is_pangram;
4446pub use self :: pangram:: PangramStatus ;
You can’t perform that action at this time.
0 commit comments