aboutsummaryrefslogtreecommitdiff
path: root/2017/02/puzzle-2.awk
diff options
context:
space:
mode:
authorThomas Voss <thomasvoss@live.com> 2021-12-05 07:22:40 +0100
committerThomas Voss <thomasvoss@live.com> 2021-12-05 07:22:40 +0100
commit29fce7fa2a01fe00543e317514e505b4b6524c2b (patch)
tree6fd8b82bdec129182f2532f66be5af7c541fd3d8 /2017/02/puzzle-2.awk
parentecb512401e58c9429dc934f059af12df0885fc49 (diff)
Add day 2 solutions
Diffstat (limited to '2017/02/puzzle-2.awk')
-rwxr-xr-x2017/02/puzzle-2.awk14
1 files changed, 14 insertions, 0 deletions
diff --git a/2017/02/puzzle-2.awk b/2017/02/puzzle-2.awk
new file mode 100755
index 0000000..7cfd91d
--- /dev/null
+++ b/2017/02/puzzle-2.awk
@@ -0,0 +1,14 @@
+#!/usr/bin/env -S awk -f
+
+{
+ for (i = 1; i <= NF; i++) {
+ for (j = 1; j <= NF; j++) {
+ if (i != j && $i % $j == 0) {
+ acc += $i / $j
+ next
+ }
+ }
+ }
+}
+
+END { print acc }