swopnilnep / kattis

Solutions and notes to the problems I have solved on Kattis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kattis

Some of the problems I have solved on Kattis.

The directory names correspond to problemID on Kattis. Most of the problems solved currently are on python3, however I plan to use Kattis to learn and implement solutions in other languages as I go.

In order to dynamically generate readme and templates for each problem, I am using fetch.sh. It takes a language and problem as an argument and generates files for each problem.

Execution

For Python3:

cd python3/<problem>
python <problem>.py < samples/<sample>.in

For Rust:

cd rust/<problem>
rustc main.rs && ./main < samples/<sample>.in

For Java:

cd java/<problem>
javac <problem>.java && java ./<problem> < samples/<sample>.in

License

All code is provided under the MIT license. https://mit-license.org/

About

Solutions and notes to the problems I have solved on Kattis

License:MIT License


Languages

Language:Python 68.8%Language:Java 16.3%Language:Rust 7.6%Language:Shell 6.6%Language:Roff 0.7%