This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
hashcode2016/Makefile
Geoffrey Frogeye 01a7f8405d Scores added
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
2016-02-11 23:35:05 +01:00

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