├── .bazelrc ├── BUILD ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── WORKSPACE ├── contest_problem.proto ├── execution ├── BUILD.bazel ├── py_locations.cc ├── py_locations.h ├── py_tester_sandboxer.cc ├── py_tester_sandboxer.h ├── simple_threadpool.h ├── solve_example.cc ├── status_macros.h ├── status_matchers.h ├── temp_path.h ├── tester_sandboxer.cc ├── tester_sandboxer.h └── tester_sandboxer_test.cc ├── load_data_test.cc ├── print_names.cc ├── print_names_and_sources.py └── third_party ├── BUILD.bazel ├── crc32.BUILD.bazel ├── farmhash.BUILD ├── highwayhash.BUILD.bazel ├── net_zstd.BUILD.bazel ├── snappy.BUILD.bazel └── zlib.BUILD.bazel /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/.bazelrc -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/BUILD -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/WORKSPACE -------------------------------------------------------------------------------- /contest_problem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/contest_problem.proto -------------------------------------------------------------------------------- /execution/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/BUILD.bazel -------------------------------------------------------------------------------- /execution/py_locations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/py_locations.cc -------------------------------------------------------------------------------- /execution/py_locations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/py_locations.h -------------------------------------------------------------------------------- /execution/py_tester_sandboxer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/py_tester_sandboxer.cc -------------------------------------------------------------------------------- /execution/py_tester_sandboxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/py_tester_sandboxer.h -------------------------------------------------------------------------------- /execution/simple_threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/simple_threadpool.h -------------------------------------------------------------------------------- /execution/solve_example.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/solve_example.cc -------------------------------------------------------------------------------- /execution/status_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/status_macros.h -------------------------------------------------------------------------------- /execution/status_matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/status_matchers.h -------------------------------------------------------------------------------- /execution/temp_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/temp_path.h -------------------------------------------------------------------------------- /execution/tester_sandboxer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/tester_sandboxer.cc -------------------------------------------------------------------------------- /execution/tester_sandboxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/tester_sandboxer.h -------------------------------------------------------------------------------- /execution/tester_sandboxer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/execution/tester_sandboxer_test.cc -------------------------------------------------------------------------------- /load_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/load_data_test.cc -------------------------------------------------------------------------------- /print_names.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/print_names.cc -------------------------------------------------------------------------------- /print_names_and_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/print_names_and_sources.py -------------------------------------------------------------------------------- /third_party/BUILD.bazel: -------------------------------------------------------------------------------- 1 | licenses(["notice"]) # Apache 2.0 2 | -------------------------------------------------------------------------------- /third_party/crc32.BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/third_party/crc32.BUILD.bazel -------------------------------------------------------------------------------- /third_party/farmhash.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/third_party/farmhash.BUILD -------------------------------------------------------------------------------- /third_party/highwayhash.BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/third_party/highwayhash.BUILD.bazel -------------------------------------------------------------------------------- /third_party/net_zstd.BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/third_party/net_zstd.BUILD.bazel -------------------------------------------------------------------------------- /third_party/snappy.BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/third_party/snappy.BUILD.bazel -------------------------------------------------------------------------------- /third_party/zlib.BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google-deepmind/code_contests/HEAD/third_party/zlib.BUILD.bazel --------------------------------------------------------------------------------