https://github.com/makstamoian/aoc2023
My solutions for 🎄 Advent Of Code 🎄 problems (at least for those I managed to solve)
https://github.com/makstamoian/aoc2023
advent-of-code advent-of-code-2023 aoc-rust aoc2023 aoc2023-in-rust rust
Last synced: 2 months ago
JSON representation
My solutions for 🎄 Advent Of Code 🎄 problems (at least for those I managed to solve)
- Host: GitHub
- URL: https://github.com/makstamoian/aoc2023
- Owner: makstamoian
- Created: 2023-12-01T14:58:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-01T20:45:03.000Z (6 months ago)
- Last Synced: 2024-12-01T21:32:29.176Z (6 months ago)
- Topics: advent-of-code, advent-of-code-2023, aoc-rust, aoc2023, aoc2023-in-rust, rust
- Language: Rust
- Homepage:
- Size: 127 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🎄 Advent Of Code 2023 🎄
Brand new 2024 year is coming, and programmers all across the world spend their time solving this beautiful coding contest with Advent Calender elements.
This repository contains solutions for problems I managed to solve. All solutions were written in Rust.
To run specific day solution (make sure it exists):
```
cargo run --bin --release
```To run all available solutions:
```
chmod +x run-all.sh
./run-all.sh
```These solutions don't claim to be the most performant ones and are written in C-like style since I am just learning Rust, infact this AoC is my first code in Rust
Release option serves to provide higher performance (compared to dev building). For more info see: https://nnethercote.github.io/perf-book/build-configuration.html