cs 0.0.4

Find common substrings among multiple input strings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# cs

Computing the (Longest) Common Substring

## Example

```rust
use cs::longest_common_substring
let lcs = longest_common_substring(&[
    "ZYABCAGB",
    "BCAGDTZYY",
    "DACAGZZYSC",
    "CAGYZYSAU",
    "CAZYUCAGF",
]);
assert_eq!(lcs, "CAG");
```