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

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)

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