├── LICENSE ├── Qualification Round ├── esab_atad.py ├── indicium.py ├── indicium.test.py ├── nesting_depth.py ├── parenting_partnering_returns.py └── vestigium.py ├── README.md ├── Round 1A ├── pascal_walk.py ├── pattern_matching.py └── square_dance.py ├── Round 1B ├── blindfolded_bullseye.py ├── blindfolded_bullseye2.py ├── expogo.py ├── expogo2.py ├── join_the_ranks.py ├── join_the_ranks2.py ├── join_the_ranks3.py ├── join_the_ranks4.py └── join_the_ranks5.py ├── Round 1C ├── overexcited_fan.py ├── overrandomized.py ├── oversized_pancake_choppers.py ├── oversized_pancake_choppers2.py └── oversized_pancake_choppers3.py ├── Round 2 ├── D-large-practice.in ├── D-large-practice.in.ans ├── emacs++.py ├── emacs++2.py ├── emacs++2_concise.py ├── emacs++_slower.py ├── emacs++_test.py ├── incremental_house_of_pancakes.py ├── incremental_house_of_pancakes2.py ├── security_update.py └── wormhole_in_one.py ├── Round 3 ├── naming_compromise.py ├── pen_testing.py ├── pen_testing2.py ├── pen_testing2_heuristic.py ├── pen_testing_heuristic.py ├── pen_testing_test.py ├── recalculating.cpp ├── recalculating.py ├── recalculating2.cpp ├── recalculating2.py ├── thermometers.py └── thermometers2.py ├── Virtual World Finals ├── adjacent_and_consecutive.py ├── adjacent_and_consecutive2.py ├── adjacent_and_consecutive3.py ├── adjacent_and_consecutive_test.py ├── hexacoin_jam.py ├── musical_cords.py ├── pack_the_slopes.py └── replace_all.py └── cpplint.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/LICENSE -------------------------------------------------------------------------------- /Qualification Round/esab_atad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Qualification Round/esab_atad.py -------------------------------------------------------------------------------- /Qualification Round/indicium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Qualification Round/indicium.py -------------------------------------------------------------------------------- /Qualification Round/indicium.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Qualification Round/indicium.test.py -------------------------------------------------------------------------------- /Qualification Round/nesting_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Qualification Round/nesting_depth.py -------------------------------------------------------------------------------- /Qualification Round/parenting_partnering_returns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Qualification Round/parenting_partnering_returns.py -------------------------------------------------------------------------------- /Qualification Round/vestigium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Qualification Round/vestigium.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/README.md -------------------------------------------------------------------------------- /Round 1A/pascal_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1A/pascal_walk.py -------------------------------------------------------------------------------- /Round 1A/pattern_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1A/pattern_matching.py -------------------------------------------------------------------------------- /Round 1A/square_dance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1A/square_dance.py -------------------------------------------------------------------------------- /Round 1B/blindfolded_bullseye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/blindfolded_bullseye.py -------------------------------------------------------------------------------- /Round 1B/blindfolded_bullseye2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/blindfolded_bullseye2.py -------------------------------------------------------------------------------- /Round 1B/expogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/expogo.py -------------------------------------------------------------------------------- /Round 1B/expogo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/expogo2.py -------------------------------------------------------------------------------- /Round 1B/join_the_ranks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/join_the_ranks.py -------------------------------------------------------------------------------- /Round 1B/join_the_ranks2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/join_the_ranks2.py -------------------------------------------------------------------------------- /Round 1B/join_the_ranks3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/join_the_ranks3.py -------------------------------------------------------------------------------- /Round 1B/join_the_ranks4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/join_the_ranks4.py -------------------------------------------------------------------------------- /Round 1B/join_the_ranks5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1B/join_the_ranks5.py -------------------------------------------------------------------------------- /Round 1C/overexcited_fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1C/overexcited_fan.py -------------------------------------------------------------------------------- /Round 1C/overrandomized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1C/overrandomized.py -------------------------------------------------------------------------------- /Round 1C/oversized_pancake_choppers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1C/oversized_pancake_choppers.py -------------------------------------------------------------------------------- /Round 1C/oversized_pancake_choppers2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1C/oversized_pancake_choppers2.py -------------------------------------------------------------------------------- /Round 1C/oversized_pancake_choppers3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 1C/oversized_pancake_choppers3.py -------------------------------------------------------------------------------- /Round 2/D-large-practice.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/D-large-practice.in -------------------------------------------------------------------------------- /Round 2/D-large-practice.in.ans: -------------------------------------------------------------------------------- 1 | Case #1: 17069999416003 2 | -------------------------------------------------------------------------------- /Round 2/emacs++.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/emacs++.py -------------------------------------------------------------------------------- /Round 2/emacs++2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/emacs++2.py -------------------------------------------------------------------------------- /Round 2/emacs++2_concise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/emacs++2_concise.py -------------------------------------------------------------------------------- /Round 2/emacs++_slower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/emacs++_slower.py -------------------------------------------------------------------------------- /Round 2/emacs++_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/emacs++_test.py -------------------------------------------------------------------------------- /Round 2/incremental_house_of_pancakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/incremental_house_of_pancakes.py -------------------------------------------------------------------------------- /Round 2/incremental_house_of_pancakes2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/incremental_house_of_pancakes2.py -------------------------------------------------------------------------------- /Round 2/security_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/security_update.py -------------------------------------------------------------------------------- /Round 2/wormhole_in_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 2/wormhole_in_one.py -------------------------------------------------------------------------------- /Round 3/naming_compromise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/naming_compromise.py -------------------------------------------------------------------------------- /Round 3/pen_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/pen_testing.py -------------------------------------------------------------------------------- /Round 3/pen_testing2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/pen_testing2.py -------------------------------------------------------------------------------- /Round 3/pen_testing2_heuristic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/pen_testing2_heuristic.py -------------------------------------------------------------------------------- /Round 3/pen_testing_heuristic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/pen_testing_heuristic.py -------------------------------------------------------------------------------- /Round 3/pen_testing_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/pen_testing_test.py -------------------------------------------------------------------------------- /Round 3/recalculating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/recalculating.cpp -------------------------------------------------------------------------------- /Round 3/recalculating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/recalculating.py -------------------------------------------------------------------------------- /Round 3/recalculating2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/recalculating2.cpp -------------------------------------------------------------------------------- /Round 3/recalculating2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/recalculating2.py -------------------------------------------------------------------------------- /Round 3/thermometers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/thermometers.py -------------------------------------------------------------------------------- /Round 3/thermometers2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Round 3/thermometers2.py -------------------------------------------------------------------------------- /Virtual World Finals/adjacent_and_consecutive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Virtual World Finals/adjacent_and_consecutive.py -------------------------------------------------------------------------------- /Virtual World Finals/adjacent_and_consecutive2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Virtual World Finals/adjacent_and_consecutive2.py -------------------------------------------------------------------------------- /Virtual World Finals/adjacent_and_consecutive3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Virtual World Finals/adjacent_and_consecutive3.py -------------------------------------------------------------------------------- /Virtual World Finals/adjacent_and_consecutive_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Virtual World Finals/adjacent_and_consecutive_test.py -------------------------------------------------------------------------------- /Virtual World Finals/hexacoin_jam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Virtual World Finals/hexacoin_jam.py -------------------------------------------------------------------------------- /Virtual World Finals/musical_cords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Virtual World Finals/musical_cords.py -------------------------------------------------------------------------------- /Virtual World Finals/pack_the_slopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Virtual World Finals/pack_the_slopes.py -------------------------------------------------------------------------------- /Virtual World Finals/replace_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/Virtual World Finals/replace_all.py -------------------------------------------------------------------------------- /cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamyu104/GoogleCodeJam-2020/HEAD/cpplint.py --------------------------------------------------------------------------------