-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday03.clj
38 lines (34 loc) · 950 Bytes
/
day03.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(ns day03
(:require [utils :as u]
[hashp.core]
[clojure.string :as str]
[com.rpl.specter :as sp]
[clojure.java.io :as io]))
(u/download-data 2022 3)
(def alpha " abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
(def data (u/load-data "day03.dat"))
;; (def data
;; "vJrwpWtwJgWrhcsFMMfFFhFp
;; jqHRNqRjqzjGDLGLrsFMfFZSrLrFZsSL
;; PmmdzqPrVvPwwTWBwg
;; wMqvLMZHhHMvwLHjbvcjnnSBnvTQFn
;; ttgJtRGJQctTZtZT
;; CrZsJsPPZsGzwwsLwLmpwMDw")
data
(->> (str/split-lines data)
(map #(partition (/ (count %) 2) %))
(sp/transform [sp/ALL sp/ALL] set)
(map #(apply clojure.set/intersection %))
(map first)
(map #(str/index-of alpha %))
(apply +))
;; => 7811
(->> (str/split-lines data)
(partition 3)
(sp/transform [sp/ALL sp/ALL] set)
(map #(apply clojure.set/intersection %))
(map first)
(map #(str/index-of alpha %))
(apply +))
;; => 2639
;