diff --git a/day-02/Makefile b/day-02/Makefile index 099be55..2cd67dd 100644 --- a/day-02/Makefile +++ b/day-02/Makefile @@ -26,3 +26,12 @@ clean: pytest1: cat data/p01test.txt | python3 src/part01.py + +pyrun1: + cat data/p01data.txt | python3 src/part01.py + +pytest2: + cat data/p02test.txt | python3 src/part02.py + +pyrun2: + cat data/p02data.txt | python3 src/part02.py \ No newline at end of file diff --git a/day-02/bin/part02 b/day-02/bin/part02 new file mode 100755 index 0000000..03321c9 Binary files /dev/null and b/day-02/bin/part02 differ