An open API service indexing awesome lists of open source software.

https://github.com/micromaomao/google-code-jam

Code Jam practices.
https://github.com/micromaomao/google-code-jam

Last synced: about 2 months ago
JSON representation

Code Jam practices.

Awesome Lists containing this project

README

        

# Mao's Google Code Jam practice files

Materials for a live round are only published when that round ends, of course.

Some (difficult / error-prone, etc.) problems will have a test generator that can generate large amount of input (and sometimes output) for debugging. There may also be files like `problem.in` which contains test cases that had caused me problems and took me a long time to realize what's wrong.

Some `*.in` files will have corresponding `*.out` files, representing the expected output. Otherwise, you can simply download the top solvers' code and run it on your input.

Sources and all additional materials posted here are released to the public domain.

My contest username is `maowtm`. Feel free to check out my (not so high) rank…

## License



CC0



To the extent possible under law,

Mao Wtm

has waived all copyright and related or neighboring rights to
Code Jam practise materials.
This work is published from:

China
.

## Some general experiences

* Always use 64 bit float.
* Interactive problems: **Do not exit with non-zero code when getting a -1 judgement**! Exiting with non-zero code will
turn a WA into a confusing RE.