Framework and solutions to various programming challenges on different online platforms. The aim is to create a plug-and-play setup for solving programming challenges in any language of choice.
Each online platform has folders with programming solutions in each programming language.
- [Platform1]
- [Language1]
- [Language2]
- [Language3]
- [Platform2]
...Rust
Add the rust-folder to the online platform folder by writingcargo new rust vcs=noneThe solution can be tested by writing
cargo testHaskell
Runbrew install ghcThe solution can then be tested by writing
runhaskell your_solution.hsGo
Runbrew install goThe solution can then be tested by writing
go run your_solution.goJava
Runjava your_solution.java