aboutsummaryrefslogtreecommitdiffstats
path: root/day3/part1.clj
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2021-12-03 09:20:32 -0500
committerClyne Sullivan <clyne@bitgloo.com>2021-12-03 09:20:32 -0500
commit897410ff8148cda1d9742213b7f775dbb6f55238 (patch)
tree049d0aeacfbdb33e6fd94e75b5c704abd011969f /day3/part1.clj
parent09e1c2712b76bf35aa6beeb8709f22911dc494d3 (diff)
add day3
Diffstat (limited to 'day3/part1.clj')
-rw-r--r--day3/part1.clj33
1 files changed, 33 insertions, 0 deletions
diff --git a/day3/part1.clj b/day3/part1.clj
new file mode 100644
index 0000000..3c09ff8
--- /dev/null
+++ b/day3/part1.clj
@@ -0,0 +1,33 @@
+(def counts
+ (loop [line (read-line)
+ tot (repeat (count line) 0)
+ ]
+ (if (empty? line)
+ tot
+ (recur
+ (read-line)
+ (map + tot (map #(if (= % \1) 1 0) line))
+ )
+ )
+ )
+ )
+
+(println counts)
+
+(loop [cnts counts gamma 0 epsilon 0]
+ (if (empty? cnts)
+ (println (* gamma epsilon))
+ (recur
+ (rest cnts)
+ (if (> (first cnts) 500)
+ (inc (* 2 gamma))
+ (* 2 gamma)
+ )
+ (if (< (first cnts) 500)
+ (inc (* 2 epsilon))
+ (* 2 epsilon)
+ )
+ )
+ )
+ )
+