Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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