about summary refs log tree commit diff
path: root/aoc/2022/10/part-one.awk
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2022-12-18 02:28:47 +0900
committerNguyễn Gia Phong <mcsinyx@disroot.org>2022-12-18 02:47:39 +0900
commit5e4395eab49524f41f217f664388a170924ec933 (patch)
tree67f6af9850412da79763f51e03a570a7a235176f /aoc/2022/10/part-one.awk
parentcde44cdda55d0a0139a8e6a98e1aa47831972395 (diff)
downloadcp-5e4395eab49524f41f217f664388a170924ec933.tar.gz
[aoc/2022] Finish day 10 HEAD main
Diffstat (limited to 'aoc/2022/10/part-one.awk')
-rwxr-xr-xaoc/2022/10/part-one.awk8
1 files changed, 8 insertions, 0 deletions
diff --git a/aoc/2022/10/part-one.awk b/aoc/2022/10/part-one.awk
new file mode 100755
index 0000000..756464e
--- /dev/null
+++ b/aoc/2022/10/part-one.awk
@@ -0,0 +1,8 @@
+#!/usr/bin/env -S awk -f
+BEGIN { cycle = x = 1 }
+{ cycle++ }
+cycle % 40 == 20 { strength += cycle * x }
+{ x += $2 }
+/^addx/ { cycle++ }
+/^addx/ && cycle % 40 == 20 { strength += cycle * x }
+END { print strength }