diff options
author | cos <cos> | 2019-12-11 18:06:25 +0100 |
---|---|---|
committer | cos <cos> | 2019-12-11 18:06:25 +0100 |
commit | 0ce19fa7cd9b69ca1d49e6122d6f028740a0668c (patch) | |
tree | 70ac5aaf4321f545655bb9d4241b6461a5747494 /2019/rust/day02 | |
parent | 4c6c41b055d857f7dc2599262720a83da8d215be (diff) | |
download | adventofcode-0ce19fa7cd9b69ca1d49e6122d6f028740a0668c.zip |
Add execution time measurement scripts
Diffstat (limited to '2019/rust/day02')
-rwxr-xr-x | 2019/rust/day02/both_parts.sh | 2 | ||||
-rwxr-xr-x | 2019/rust/day02/part_one.sh | 1 | ||||
-rwxr-xr-x | 2019/rust/day02/part_two.sh | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/2019/rust/day02/both_parts.sh b/2019/rust/day02/both_parts.sh new file mode 100755 index 0000000..7a91b46 --- /dev/null +++ b/2019/rust/day02/both_parts.sh @@ -0,0 +1,2 @@ +./part_one.sh +./part_two.sh diff --git a/2019/rust/day02/part_one.sh b/2019/rust/day02/part_one.sh new file mode 100755 index 0000000..d4611db --- /dev/null +++ b/2019/rust/day02/part_one.sh @@ -0,0 +1 @@ +../target/release/day02 < input diff --git a/2019/rust/day02/part_two.sh b/2019/rust/day02/part_two.sh new file mode 100755 index 0000000..1ec6c81 --- /dev/null +++ b/2019/rust/day02/part_two.sh @@ -0,0 +1 @@ +../target/release/day02 19690720 < input |