algorithmz 1.2.5

This is the corresponding implemenation of the python module of the same name.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use algorithmz::string::contain_string;

#[test]
fn test_contain_string() {
    let result = contain_string("hello world", "ll");
    assert_eq!(result, true);
}

#[test]
fn test_contain_string_fail() {
    let result = contain_string("hello world", "kk");
    assert_eq!(result, false);
}