diff options
-rw-r--r-- | day09.clj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/day09.clj b/day09.clj index 6066b53..5502b5b 100644 --- a/day09.clj +++ b/day09.clj @@ -47,7 +47,7 @@ (def part2 (->> low-points (map measure) - sort - (take-last 3) - (apply *))) + sort + (take-last 3) + (apply *))) ;; => 1600104 |