This repository holds my solutions to the various problems on Kattis.
When adding a new solution to the project:
- Make a separate directory for that problem
- Make separate subdirectories for solutions in different languages
- Sample inputs should be in files named
sample-input-x
, wherex
is the sample number. - Expected outputs should go in a
README.md
file - use the following as a template:
# [Problem Name] - Expected Outputs
## Sample 1
```
some output
```
## Sample 2
```
more output
```