aboutsummaryrefslogtreecommitdiff
path: root/2016/03/puzzle-1.awk
diff options
context:
space:
mode:
Diffstat (limited to '2016/03/puzzle-1.awk')
-rwxr-xr-x2016/03/puzzle-1.awk4
1 files changed, 4 insertions, 0 deletions
diff --git a/2016/03/puzzle-1.awk b/2016/03/puzzle-1.awk
new file mode 100755
index 0000000..809f12c
--- /dev/null
+++ b/2016/03/puzzle-1.awk
@@ -0,0 +1,4 @@
+#!/usr/bin/awk -f
+
+($1 + $2 > $3) && ($2 + $3 > $1) && ($3 + $1 > $2) { c++ }
+END { print c }