aboutsummaryrefslogtreecommitdiffstats
path: root/year2021/day3/part1.clj
diff options
context:
space:
mode:
Diffstat (limited to 'year2021/day3/part1.clj')
-rw-r--r--year2021/day3/part1.clj25
1 files changed, 25 insertions, 0 deletions
diff --git a/year2021/day3/part1.clj b/year2021/day3/part1.clj
new file mode 100644
index 0000000..3fe888e
--- /dev/null
+++ b/year2021/day3/part1.clj
@@ -0,0 +1,25 @@
+(require '[clojure.string :as str])
+
+(->> "./in"
+ (slurp)
+ (str/split-lines)
+ (map (fn [l] (map #(if (= % \1) 1 0) l)))
+ (apply (partial map +))
+ (map #(if (< % 500) \1 \0))
+ (str/join)
+ (#(Integer/parseInt % 2))
+ (#(* % (bit-xor % (dec (int (Math/pow 2 12))))))
+ (println)
+ )
+
+; (->> input data file name
+; read in entire contents
+; split contents into array of lines
+; for each line, transform characters '1'/'0' to numbers
+; build sum array using the lines
+; convert back to array of characters
+; join characters into single string
+; convert binary string to a number (gamma)
+; multiply gamma by its bit-inverse (bit length hard-coded)
+; print results
+