Compare commits

..

1 commit

Author SHA1 Message Date
Tristan Daniël Maat f7767d9f31
Complete day 4.2 2020-12-04 21:40:37 +00:00

View file

@ -17,7 +17,7 @@ fn parse_passports(input: &str) -> Result<Vec<HashMap<&str, &str>>, &str> {
.trim()
.split(|c| c == ' ' || c == '\n')
.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 key = item.0;