Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artemis-beta/advent-of-code-2023
Rust library containing solutions to the Advent of Code 2023 challenge
https://github.com/artemis-beta/advent-of-code-2023
advent-of-code advent-of-code-2023 advent-of-code-2023-rust
Last synced: 13 days ago
JSON representation
Rust library containing solutions to the Advent of Code 2023 challenge
- Host: GitHub
- URL: https://github.com/artemis-beta/advent-of-code-2023
- Owner: artemis-beta
- Created: 2023-12-03T15:38:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-06T19:24:31.000Z (about 1 year ago)
- Last Synced: 2024-11-12T22:18:30.451Z (2 months ago)
- Topics: advent-of-code, advent-of-code-2023, advent-of-code-2023-rust
- Language: Rust
- Homepage: https://adventofcode.com/2023
- Size: 62.5 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
[![Advent of Code 2023](https://github.com/artemis-beta/Advent-of-Code-2023/actions/workflows/testing.yaml/badge.svg)](https://github.com/artemis-beta/Advent-of-Code-2023/actions/workflows/testing.yaml)This repository contains solutions to the challenges set as part of the [Advent of Code 2023](https://adventofcode.com/2023).
The solutions have been created in the Rust programming language as a library.| | ||||||
|-|-|-|-|-|-|-|
||1|2|3|4|5|6|
||:x:|:x:|:x:|:x:| | |
|7|8|9|10|11|12|13|
| | | | | | | | |
|14|15|16|17|18|19|20|
| | | | | | | |
|21|22|23|24|25| | |
| | | | | | | |## Exercises
The tasks for each day can be found within the `examples` directory and make use of the `aoc23` library:
```sh
cargo run --example day_3
```## Testing
Tests are based on the examples given within the exercises themselves.
```sh
cargo test
```