aboutsummaryrefslogtreecommitdiffstats
path: root/day23
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-23 13:56:32 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-23 13:56:32 -0500
commit6dda086d5ccfd194d8fbb51b8d10461605e43c79 (patch)
tree0abe7294c55850c6a31395cee738a08dea413816 /day23
parent7bf455637f9afc9102e1c7ec72565a497c3c5e66 (diff)
day23: track games in set, not vector
Diffstat (limited to 'day23')
-rw-r--r--day23/core.clj6
1 files changed, 3 insertions, 3 deletions
diff --git a/day23/core.clj b/day23/core.clj
index d04a614..213ce5e 100644
--- a/day23/core.clj
+++ b/day23/core.clj
@@ -74,7 +74,7 @@
nil]))
(defn do-turns [fields]
- (into []
+ (into #{}
(r/fold
r/cat
#(if-let [t (apply do-slot %2)]
@@ -92,7 +92,7 @@
(do
(println "Splitting...")
(doseq [p (partition 50000 turns)]
- (play-games (into [] p) tc)))
+ (play-games (into #{} p) tc)))
(do
(let [new-turns (do-turns turns)
winners (filter winner? new-turns)]
@@ -106,6 +106,6 @@
(defn -main
"I don't do a whole lot ... yet."
[& args]
- (play-games [[init-field 0]] 0)
+ (play-games #{[init-field 0]} 0)
(println (first (sort @wins))))