aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--2015/02/.gitignore1
-rwxr-xr-x2015/02/puzzle-1.awk20
-rwxr-xr-x2015/02/puzzle-2.awk20
3 files changed, 1 insertions, 40 deletions
diff --git a/2015/02/.gitignore b/2015/02/.gitignore
new file mode 100644
index 0000000..95a78b1
--- /dev/null
+++ b/2015/02/.gitignore
@@ -0,0 +1 @@
+puzzle-[12].awk
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 }
diff --git a/2015/02/puzzle-2.awk b/2015/02/puzzle-2.awk
deleted file mode 100755
index 450aed9..0000000
--- a/2015/02/puzzle-2.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" }
-{
- x = $1 + $1 + $2 + $2
- y = $2 + $2 + $3 + $3
- z = $1 + $1 + $3 + $3
-
- sum += $1 * $2 * $3 + min(x, y, z)
- # END PART 2
-}
-END { print sum }