An open API service indexing awesome lists of open source software.

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

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
```