https://github.com/marttp/advent-of-code-2024-rust
This repository used for learning in Rust by attending Advent of Code 2024
https://github.com/marttp/advent-of-code-2024-rust
Last synced: about 1 year ago
JSON representation
This repository used for learning in Rust by attending Advent of Code 2024
- Host: GitHub
- URL: https://github.com/marttp/advent-of-code-2024-rust
- Owner: marttp
- Created: 2024-11-30T19:36:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-25T05:56:46.000Z (over 1 year ago)
- Last Synced: 2025-02-08T16:12:44.818Z (over 1 year ago)
- Language: Rust
- Size: 66.4 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent Of Code 2024 in Rust
By Thanaphoom Babparn (Mart)
This repository used for learning in Rust by attending Advent of Code 2024
## Command
### Create new day
```shell
# Example: cargo new day01
cargo new dayxx
```
### Run
```shell
cd dayxx
cargo run --bin part1
cargo run --bin part2
```