1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/// Orginalizes a `&str`
///
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "a";
///     let expected_string: String = "a".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "0.1";
///     let expected_string: String = "0.1".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "-1";
///     let expected_string: String = "-1st".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "0";
///     let expected_string: String = "0th".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "1";
///     let expected_string: String = "1st".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "2";
///     let expected_string: String = "2nd".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "3";
///     let expected_string: String = "3rd".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "9";
///     let expected_string: String = "9th".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "12";
///     let expected_string: String = "12th".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "12000";
///     let expected_string: String = "12000th".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "12001";
///     let expected_string: String = "12001st".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "12002";
///     let expected_string: String = "12002nd".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "12003";
///     let expected_string: String = "12003rd".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
/// ```
///     use cruet::numbers::ordinalize::ordinalize;
///     let mock_string: &str = "12004";
///     let expected_string: String = "12004th".to_owned();
///     let asserted_string: String = ordinalize(mock_string);
///     assert!(asserted_string == expected_string);
///
/// ```
pub fn ordinalize(non_ordinalized_string: &str) -> String {
    let chars: Vec<char> = non_ordinalized_string.chars().collect();
    let last_number: char = chars[chars.len() - 1];
    if is_ordinalizable(last_number) {
        return non_ordinalized_string.to_owned();
    }
    if chars.len() > 1 {
        if second_last_number_is_one(chars) {
            return format!("{}{}", non_ordinalized_string, "th");
        } else if string_contains_decimal(non_ordinalized_string.to_owned()) {
            return non_ordinalized_string.to_owned();
        }
    }
    match last_number {
        '1' => format!("{}{}", non_ordinalized_string, "st"),
        '2' => format!("{}{}", non_ordinalized_string, "nd"),
        '3' => format!("{}{}", non_ordinalized_string, "rd"),
        _ => format!("{}{}", non_ordinalized_string, "th"),
    }
}

fn is_ordinalizable(last_number: char) -> bool {
    !last_number.is_numeric()
}

fn second_last_number_is_one(chars: Vec<char>) -> bool {
    let second_last_number: char = chars[chars.len() - 2];
    second_last_number == '1'
}

fn string_contains_decimal(non_ordinalized_string: String) -> bool {
    non_ordinalized_string.contains('.')
}