Commit cbe1a4e2 authored by Brett Cannon's avatar Brett Cannon

Add comma grouping to max result so it's easier to read.

parent 448acd0a
...@@ -110,7 +110,7 @@ def main(import_): ...@@ -110,7 +110,7 @@ def main(import_):
print(result, end=' ') print(result, end=' ')
sys.stdout.flush() sys.stdout.flush()
assert not sys.dont_write_bytecode assert not sys.dont_write_bytecode
print("]", "best is", max(results)) print("]", "best is", format(max(results), ',d'))
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment