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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
use std::collections::{HashMap, HashSet};
use unidecode::unidecode;
use crate::{normalize, Word};
const ALPHABET: &str = "abcdefghijklmnopqrstuvwxyz";
pub fn clean_input(input: &str) -> String {
unidecode(input)
.chars()
.map(|c| {
if c.is_ascii_alphabetic() {
c.to_ascii_lowercase()
} else {
' '
}
})
.collect::<String>()
.split_whitespace()
.collect::<Vec<&str>>()
.join(" ")
}
pub fn input_to_words(
input: &str,
dictionary: HashMap<String, HashSet<String>>,
) -> Result<Vec<Word>, String> {
let mut result = Vec::new();
for word in input.split_whitespace() {
if let Some(candidates) = dictionary.get(&normalize(word)) {
result.push(Word::new(word, candidates));
} else {
return Err(format!("Word {word:?} is not possible in the dictionary"));
}
}
Ok(result)
}
pub fn parse_key(key: &str) -> Result<HashMap<char, char>, String> {
if key.contains('?') {
let mut result = HashMap::new();
for (a, b) in ALPHABET.chars().zip(key.chars()) {
if b != '?' {
if !ALPHABET.contains(b) {
return Err(format!(
"Invalid key character: {b:?} (should be in lowercase alphabet)"
));
}
if let Some((dup_key, value)) = result.iter().find(|(_, v)| **v == b) {
return Err(format!(
"Duplicate mapping of {value:?} to {dup_key:?} and {a:?}"
));
}
result.insert(a, b);
}
}
Ok(result)
} else {
let mut result = HashMap::new();
for pair in key.split(',') {
let pair = pair.chars().collect::<Vec<char>>();
let (&a, &b) = (
pair.first()
.ok_or(format!("No first character in key: {key:?}"))?,
pair.last()
.ok_or(format!("No last character in key: {key:?}"))?,
);
if !ALPHABET.contains(a) {
return Err(format!(
"Invalid key character: {a:?} (should be in lowercase alphabet)"
));
} else if !ALPHABET.contains(b) {
return Err(format!(
"Invalid key character: {b:?} (should be in lowercase alphabet)"
));
}
if result.contains_key(&a) {
return Err(format!("Duplicate key character: {a:?}"));
}
if let Some((dup_key, value)) = result.iter().find(|(_, v)| **v == b) {
return Err(format!(
"Duplicate mapping of {value:?} to {dup_key:?} and {a:?}"
));
}
result.insert(a, b);
}
Ok(result)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn clean_input_tests() {
assert_eq!(clean_input("Hello, world!"), "hello world");
assert_eq!(clean_input("Hello, world! 123"), "hello world");
assert_eq!(clean_input(" some spaces "), "some spaces");
assert_eq!(clean_input("Oké Måns"), "oke mans");
assert_eq!(clean_input("Æneid"), "aeneid");
assert_eq!(clean_input("test\nword"), "test word");
assert_eq!(
clean_input("something.\n\nnow other."),
"something now other"
);
}
#[test]
fn parse_key_tests() {
assert_eq!(
parse_key("a:b,c:d,e:f").unwrap(),
[('a', 'b'), ('c', 'd'), ('e', 'f')]
.iter()
.cloned()
.collect()
);
assert_eq!(
parse_key("ab,cd,ef").unwrap(),
[('a', 'b'), ('c', 'd'), ('e', 'f')]
.iter()
.cloned()
.collect()
);
assert_eq!(
parse_key("b?d?f?????????????????????????").unwrap(),
[('a', 'b'), ('c', 'd'), ('e', 'f')]
.iter()
.cloned()
.collect()
);
}
#[test]
fn parse_key_errors() {
assert_eq!(
parse_key("????????A???????b???????c?????").unwrap_err(),
"Invalid key character: 'A' (should be in lowercase alphabet)"
);
assert_eq!(
parse_key("a???a??????b???c??????????????").unwrap_err(),
"Duplicate mapping of 'a' to 'a' and 'e'"
);
assert_eq!(
parse_key("A:b,c:d,e:f").unwrap_err(),
"Invalid key character: 'A' (should be in lowercase alphabet)"
);
assert_eq!(
parse_key("a:B,c:d,e:f").unwrap_err(),
"Invalid key character: 'B' (should be in lowercase alphabet)"
);
assert_eq!(
parse_key("ab,cd,af").unwrap_err(),
"Duplicate key character: 'a'"
);
assert_eq!(
parse_key("ab,cd,eb").unwrap_err(),
"Duplicate mapping of 'b' to 'a' and 'e'"
);
}
}