Skip to content

Instantly share code, notes, and snippets.

@Solaxun
Created December 4, 2021 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Solaxun/2aa3633017f73e36bd1506a21b937d06 to your computer and use it in GitHub Desktop.
Save Solaxun/2aa3633017f73e36bd1506a21b937d06 to your computer and use it in GitHub Desktop.
AoC 2021: Clojure Day 4
(ns aoc-clj-2021.day4
(:require [clojure.string :as str]
[clojure.set :as set]
[clojure.java.io :as io]))
(def data
(->> (io/resource "day4.txt")
slurp
str/split-lines
(remove #(= "" %))))
(def hand (->> (-> data first (str/split #","))
(map parse-long)))
(def boards
(->> (for [row (rest data)
:let [parsed (->> (str/split row #" ")
(remove #(= "" %))
(map parse-long))]]
(vec parsed))
(partition 5)
(map vec)))
(defn place-piece [piece board]
(vec (for [[r row] (map-indexed vector board)]
(vec (for [[c col] (map-indexed vector row)]
(if (= col piece)
"*"
col))))))
(defn row-full? [row]
(every? #(= % "*" ) row))
(defn winner? [board]
(or (some row-full? board)
(some row-full? (apply map vector board))))
(let [b1 (first boards)]
(place-piece "*" b1))
(defn play-round [piece boards]
(let [bs (map #(place-piece piece %) boards)
winner (filter winner? bs)]
(when (seq winner) winner)))
(defn score [num-called board]
(* num-called
(->> board
flatten
(remove #(= % "*"))
(reduce +))))
;; part 1
(reduce (fn [boards piece]
(let [bs (map #(place-piece piece %) boards)
w (filter winner? bs)]
(if (seq w)
(reduced (score piece (first w)))
bs)))
boards
hand)
;; part 2
(-> (reduce (fn [{:keys [boards winners] :as state} piece]
(let [bs (map #(place-piece piece %) boards)
w (filter winner? bs)]
(if (seq w)
(-> (update state :winners conj (score piece w))
(assoc :boards (remove winner? bs)))
(assoc state :boards (remove winner? bs)))))
{:boards boards :winners []}
hand)
:winners
last)
@asciidiego
Copy link

What is parse-long?

@Solaxun
Copy link
Author

Solaxun commented Dec 21, 2021 via email

@asciidiego
Copy link

Great. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment