summary refs log tree commit diff homepage
path: root/2017
diff options
context:
space:
mode:
Diffstat (limited to '2017')
-rw-r--r--2017/src/bin/day04.rs28
1 files changed, 27 insertions, 1 deletions
diff --git a/2017/src/bin/day04.rs b/2017/src/bin/day04.rs
index 2d6ca52..784a246 100644
--- a/2017/src/bin/day04.rs
+++ b/2017/src/bin/day04.rs
@@ -5,7 +5,23 @@ fn solve1(input: &str) -> u32 {
     let mut valid = 0;
     for phrase in input.lines() {
         let words = phrase.split_whitespace();
-        if words.clone().count() == words.collect::<HashSet<&str>>().len() {
+        if words.clone().count() == words.collect::<HashSet<_>>().len() {
+            valid += 1;
+        }
+    }
+    valid
+}
+
+fn solve2(input: &str) -> u32 {
+    let mut valid = 0;
+    for phrase in input.lines() {
+        let count = phrase.split_whitespace().count();
+        let words = phrase.split_whitespace()
+            .map(str::chars)
+            .map(Iterator::collect::<Vec<_>>)
+            .map(|mut v| { v.sort(); v })
+            .collect::<HashSet<_>>();
+        if count == words.len() {
             valid += 1;
         }
     }
@@ -17,6 +33,7 @@ fn main() {
     io::stdin().read_to_string(&mut input).unwrap();
 
     println!("Part 1: {}", solve1(&input));
+    println!("Part 2: {}", solve2(&input));
 }
 
 #[test]
@@ -25,3 +42,12 @@ fn part1() {
     assert_eq!(0, solve1("aa bb cc dd aa"));
     assert_eq!(1, solve1("aa bb cc dd aaa"));
 }
+
+#[test]
+fn part2() {
+    assert_eq!(1, solve2("abcde fghij"));
+    assert_eq!(0, solve2("abcde xyz ecdab"));
+    assert_eq!(1, solve2("a ab abc abd abf abj"));
+    assert_eq!(1, solve2("iiii oiii ooii oooi oooo"));
+    assert_eq!(0, solve2("oiii ioii iioi iiio"));
+}