- C++ boilerplate file. this is where your code goes
- a makefile to quickly compile and run your code for your own testing
- (optional) empty text files to insert the problem's provided example case inputs and outputs for semi-automated testing
- Clone this repository
gh repo clone mcmahonl/CompetitiveProgrammingTemplate
- Navigate to ./generic
cd generic
-
Write your code for the problem's solution in generic.cpp
-
Compile your code using the provided makefile
make
- Run your code for testing
./a
- (optional) Copy and paste test cases into
t<n>.txt