Welcome to my GitHub repository, where I solve algorithm challenges and explore new programming languages!
This repository serves as a collection of coding challenges from various platforms and a playground for learning different programming languages.
- JavaScript
- Typescript
- C++
- Standard ML
- Rust
.
├── Algo_Problem_01/
│ ├── jsSolution.js
│ ├── rust_solution.rs
│ └── c_plus_plus_solution.cpp
│ └── ...
│ └── README.md
├── Algo_Problem_02/
│ ├── jsSolution.js
│ ├── rust_solution.rs
│ └── c_plus_plus_solution.cpp
│ └── ...
│ └── README.md
- LeetCode
- adventOfCode
- Typehero
- scrimba
Clone the repository and navigate to the desired language folder:
git clone https://github.com/ktrip96/algo-challenges.git
# Example for Rust
rustc main.rs
./main
# Example for JS
node main.js
# Example for TS
ts-node main.ts
# Example for C++
g++ -o main main.cpp
./main
# Example for Standard ML
mlton main.sml
./main