2020 day 22 part 2 (C, 1st version)

This commit is contained in:
2022-11-29 19:14:53 +01:00
parent d4d5af0cb6
commit ea9c144127
3 changed files with 285 additions and 64 deletions

View File

@@ -1,4 +0,0 @@
#! /bin/bash
PATH=.:$PATH
IN="$1"
time { ex1.bash < $IN; ex2.bash < $IN; } 2>&1

View File

@@ -1,5 +0,0 @@
#! /bin/bash
PATH=.:$PATH
IN="$1"
echo IN=$IN
time for i in ex1-c ex2-c; do "$i" < "$IN"; done 2>&1