Compare commits
1 commit
d63b39487d
...
f7767d9f31
Author | SHA1 | Date | |
---|---|---|---|
Tristan Daniël Maat | f7767d9f31 |
|
@ -17,7 +17,7 @@ fn parse_passports(input: &str) -> Result<Vec<HashMap<&str, &str>>, &str> {
|
||||||
.trim()
|
.trim()
|
||||||
.split(|c| c == ' ' || c == '\n')
|
.split(|c| c == ' ' || c == '\n')
|
||||||
.map(|field| {
|
.map(|field| {
|
||||||
let split = field.find(':').ok_or("Invalid passport value")?;
|
let split = field.find(':').ok_or("Invalid passport entry; no separator")?;
|
||||||
let item = field.split_at(split);
|
let item = field.split_at(split);
|
||||||
|
|
||||||
let key = item.0;
|
let key = item.0;
|
||||||
|
|
Loading…
Reference in a new issue