aboutsummaryrefslogtreecommitdiff
path: root/2015/02/puzzle-1.awk
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2022-12-01 21:26:32 +0100
committerThomas Voss <mail@thomasvoss.com> 2022-12-01 21:26:32 +0100
commitfbeaf4fde52ebb89f07564685454cfc385dddb0d (patch)
treeaa24c794156f75a52c365ea214793115196c035a /2015/02/puzzle-1.awk
parent4abaad2051f14cca06b8bff00c460a9c7541f5cb (diff)
Ignore some files
Diffstat (limited to '2015/02/puzzle-1.awk')
-rwxr-xr-x2015/02/puzzle-1.awk20
1 files changed, 0 insertions, 20 deletions
diff --git a/2015/02/puzzle-1.awk b/2015/02/puzzle-1.awk
deleted file mode 100755
index 5c05d31..0000000
--- a/2015/02/puzzle-1.awk
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/awk -f
-
-function min(a, b, c) {
- if (a <= b && a <= c)
- return a
- if (b <= a && b <= c)
- return b
- return c
-}
-
-BEGIN { FS = "x" }
-{
- # START PART 1
- x = $1 * $2
- y = $2 * $3
- z = $1 * $3
-
- sum += (2 * x) + (2 * y) + (2 * z) + min(x, y, z)
-}
-END { print sum }