Personal repository for various CodeWars solutions.
Programming Languages: Java 1.8+, Kotlin 1.3, C++17 (Clang), Lua 5.3, Python 3.8, R 3.4.1, Shell (Bash), Rust 1.56+
If using Linux, install the official package for your programming language of choice. If the package is not available, or are using Windows:
- Java
- Kotlin (snapcraft) (for Windows, download straight from Github)
- Lua
- Python
- R (recommended to install RStudio)
- Shell (for Windows, use the default shell in your WSL distribution or Cygwin)
- C++ and Clang (for Windows, Cygwin or Visual Studio)
- Rust
- Java:
javac <name>.java && java <name>
- Kotlin:
kotlinc <name>.kt && kotlin <Name>Kt
- C++:
clang++ -Wall -std=c++17 <name>.cpp -o <name> && ./<name>
- Lua:
lua <name>.lua
- Python:
python3 <name>.py
-
R: Use RStudio
-
Shell:
bash <name>.bash
- Rust: use The Rust Playground
Please feel free to send me an email/send an issue form or pull request if you have any questions about a particular solution.
This project is licensed under the MIT License - see the LICENSE.md file for details.
TL;DR: Feel free to share the code, however it is best to attempt each challenge yourself before consulting other people's solutions.