algorithmz 1.2.7

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
use algorithmz::string::is_palindrome;

#[test]
fn test_is_palindrome_false() {
    let result = is_palindrome("daniel");
    assert_eq!(result, false);
}
#[test]
fn test_is_palindrom_true() {
    let result = is_palindrome("Otto");
    assert_eq!(result, true);
}