Geoffrey Frogeye
01a7f8405d
That'll be enough for tonight. Note that we got 213338 with the following runs 1: 8T/10 2: 8T/10 3: T/2 And we would have been 311 instead of 662 with very few modifications
14 lines
197 B
Makefile
14 lines
197 B
Makefile
all: 1o 2o 3o ../submission.zip
|
|
|
|
../submission.zip: 1o 2o 3o
|
|
zip $@ .git *o *.py -r
|
|
|
|
1o: 1
|
|
python main.py $<
|
|
2o: 2
|
|
python main.py $<
|
|
3o: 3
|
|
python main.py $<
|
|
|
|
.PHONY: ../submission.zip 1o 2o 3o
|