algorithmz 1.2.0

This is the corresponding implemenation of the python module of the same name.
Documentation
1
2
3
4
5
6
7
use algorithmz::string::breaking_bad;

#[test]
fn test_breaking_bad() {
    let result = breaking_bad(&vec!["Google"],&vec!["le"]);
    assert_eq!(result, vec!["Goog[le]".to_string()]);
}