Merge branch 'master' of github.com:GeoffreyFrogeye/hashcode2016

This commit is contained in:
Geoffrey Frogeye 2016-02-11 20:36:41 +01:00
commit d256e9ec50
2 changed files with 7 additions and 0 deletions

View File

@ -99,6 +99,7 @@ for d in range(D):
Dp.append(Wp[0])
Di.append(dict((p, 0) for p in range(P)))
Dd.append(0)
Out = '' # Drones commands
# Debug

6
out.py Normal file
View File

@ -0,0 +1,6 @@
#Out file
def CreateOutFile():
f = open(sys.argv[1], 'w')
f.write(len(Out)/10 + '\n' + Out)
f.close()