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/out.py

6 lines
114 B
Python

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