srcmake / code-jam

Contains solutions to Google's Code Jam problems.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Code Jam Solutions

I'll use this repo to post my solutions to the problems in Google's coding competition, Code Jam.

Normal Template

Typical workflow is:

  1. Open Normal Template folder in VSCode.
  2. Add the test cases to input.in (copy from problem).
  3. Update main.cpp with the solution.
  4. Run make in terminal to build and run the code.
  5. Read the output in output.out
  6. Repeat steps 3-5 until solution works.
  7. Copy main.cpp code, paste into Code Jam editor in website.
  8. Comment out freopen(filein, "r", stdin); freopen(fileout, "w", stdout); line.
  9. Run solution in website.

Solutions

About

Contains solutions to Google's Code Jam problems.

License:MIT License


Languages

Language:C++ 97.8%Language:Makefile 2.2%