Welcome to Rustvent of Code 2024, my personal Advent of Code solutions made entirely in Rust 🦀 language!
Demo | ||
---|---|---|
Main Menu | Day 2 Scenario | Endscreen |
Basically, Advent of Code is an advent calendar containing general-skills programming puzzles. These puzzles can be solved using any language, so, I decided to try Rust!
Are you curious about how AoC works? Take a look at AoC about page by clicking here.
Did you want to run this program? Here are some requirements:
- Git
- Rust Compiler
- Cargo Package Manager
- IDE (e.g., VS Code, JetBrains RustRover, Neovim) is optional (but recomended)
-
Firstly, clone the repository:
git clone https://github.com/nasccped/rustvent-of-code-2024
-
Goto cloned repo:
cd ./rustvent-of-code-2024
-
Run the project:
cargo run
Tip
How can i know if the result is right?
Just run cargo test
instead!
This will output all program's test cases (based on the given AoC example)
Take a look at OUTRO to get info, or CONTRIBUTING to see how to contribute!