From 65beb3ea0223e693ac348c6133e496ada2b2352f Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Wed, 18 Dec 2024 14:20:57 +0100 Subject: Add 2019 day 7 solutions --- 2019/07/puzzle-1.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 2019/07/puzzle-1.sh (limited to '2019/07/puzzle-1.sh') diff --git a/2019/07/puzzle-1.sh b/2019/07/puzzle-1.sh new file mode 100755 index 0000000..38fd725 --- /dev/null +++ b/2019/07/puzzle-1.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +python -c ' +import itertools +for p in itertools.permutations([0, 1, 2, 3, 4]): + print(*p) +' | while read a b c d e +do + ./machine.lisp $a 0 \ + | ./machine.lisp $b \ + | ./machine.lisp $c \ + | ./machine.lisp $d \ + | ./machine.lisp $e +done | sort -nr | head -n1 \ No newline at end of file -- cgit v1.2.3