├── LICENSE.md ├── Qualification Round ├── dijkstra.py ├── infinite-house-of-pancakes.py ├── ominous-omino.py └── standing-ovation.py ├── README.md ├── Round 1A ├── haircut.py ├── logging.cpp ├── logging.py └── mushroom-monster.py ├── Round 1B ├── counter-culture.py ├── hiking-deer.cpp ├── hiking-deer.py ├── noisy-neighbors.cpp └── noisy-neighbors.py ├── Round 1C ├── brattleship.py ├── less-money-more-problems.py └── typewriter-monkey.py ├── Round 2 ├── bilingual.cpp ├── bilingual.py ├── drum-decorator.py ├── kiddie-pool.py └── pegman.py ├── Round 3 ├── fairland.py ├── log-set.py ├── river-flow.py ├── runaway-quail.cpp ├── runaway-quail.py └── smoothing-window.py ├── World Finals ├── campinatorics.py ├── costly-binary-search.cpp ├── costly-binary-search.py ├── crane-truck.cpp ├── crane-truck.py ├── merlin-qa.py ├── pretty-good-proportion.cpp ├── pretty-good-proportion.py ├── taking-over-the-world.cpp └── taking-over-the-world.py └── cpplint.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Qualification Round/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Qualification Round/dijkstra.py -------------------------------------------------------------------------------- /Qualification Round/infinite-house-of-pancakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Qualification Round/infinite-house-of-pancakes.py -------------------------------------------------------------------------------- /Qualification Round/ominous-omino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Qualification Round/ominous-omino.py -------------------------------------------------------------------------------- /Qualification Round/standing-ovation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Qualification Round/standing-ovation.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/README.md -------------------------------------------------------------------------------- /Round 1A/haircut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1A/haircut.py -------------------------------------------------------------------------------- /Round 1A/logging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1A/logging.cpp -------------------------------------------------------------------------------- /Round 1A/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1A/logging.py -------------------------------------------------------------------------------- /Round 1A/mushroom-monster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1A/mushroom-monster.py -------------------------------------------------------------------------------- /Round 1B/counter-culture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1B/counter-culture.py -------------------------------------------------------------------------------- /Round 1B/hiking-deer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1B/hiking-deer.cpp -------------------------------------------------------------------------------- /Round 1B/hiking-deer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1B/hiking-deer.py -------------------------------------------------------------------------------- /Round 1B/noisy-neighbors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1B/noisy-neighbors.cpp -------------------------------------------------------------------------------- /Round 1B/noisy-neighbors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1B/noisy-neighbors.py -------------------------------------------------------------------------------- /Round 1C/brattleship.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1C/brattleship.py -------------------------------------------------------------------------------- /Round 1C/less-money-more-problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1C/less-money-more-problems.py -------------------------------------------------------------------------------- /Round 1C/typewriter-monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 1C/typewriter-monkey.py -------------------------------------------------------------------------------- /Round 2/bilingual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 2/bilingual.cpp -------------------------------------------------------------------------------- /Round 2/bilingual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 2/bilingual.py -------------------------------------------------------------------------------- /Round 2/drum-decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 2/drum-decorator.py -------------------------------------------------------------------------------- /Round 2/kiddie-pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 2/kiddie-pool.py -------------------------------------------------------------------------------- /Round 2/pegman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 2/pegman.py -------------------------------------------------------------------------------- /Round 3/fairland.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 3/fairland.py -------------------------------------------------------------------------------- /Round 3/log-set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 3/log-set.py -------------------------------------------------------------------------------- /Round 3/river-flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 3/river-flow.py -------------------------------------------------------------------------------- /Round 3/runaway-quail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 3/runaway-quail.cpp -------------------------------------------------------------------------------- /Round 3/runaway-quail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 3/runaway-quail.py -------------------------------------------------------------------------------- /Round 3/smoothing-window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/Round 3/smoothing-window.py -------------------------------------------------------------------------------- /World Finals/campinatorics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/campinatorics.py -------------------------------------------------------------------------------- /World Finals/costly-binary-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/costly-binary-search.cpp -------------------------------------------------------------------------------- /World Finals/costly-binary-search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/costly-binary-search.py -------------------------------------------------------------------------------- /World Finals/crane-truck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/crane-truck.cpp -------------------------------------------------------------------------------- /World Finals/crane-truck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/crane-truck.py -------------------------------------------------------------------------------- /World Finals/merlin-qa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/merlin-qa.py -------------------------------------------------------------------------------- /World Finals/pretty-good-proportion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/pretty-good-proportion.cpp -------------------------------------------------------------------------------- /World Finals/pretty-good-proportion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/pretty-good-proportion.py -------------------------------------------------------------------------------- /World Finals/taking-over-the-world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/taking-over-the-world.cpp -------------------------------------------------------------------------------- /World Finals/taking-over-the-world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/World Finals/taking-over-the-world.py -------------------------------------------------------------------------------- /cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2015/HEAD/cpplint.py --------------------------------------------------------------------------------