From bbcd0b52d228879c0a8aaf19f90a172e7da94533 Mon Sep 17 00:00:00 2001 From: Adam Millerchip Date: Sun, 6 Dec 2020 16:38:43 +0900 Subject: [PATCH] Add Day 6 better implementation notes --- day6/README | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/day6/README b/day6/README index e3785c4..2e584ce 100644 --- a/day6/README +++ b/day6/README @@ -44,3 +44,12 @@ most notable thing here? I wonder if there's a more effective way to parse the stream dynamically and also strip off the new lines? + +** Update ** + +From other people's answers, taking the intersection of all the replies was the best way +to implement this. Makes sense. + +I think I'm succumbing to pressure to complete quickly due to the leaderboard, and just +going with whatever works rather than reading the question properly and working out +what it's *really* asking.