Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mminer/aoc2023
Advent of Code 2023 solutions.
https://github.com/mminer/aoc2023
advent-of-code advent-of-code-2023 advent-of-code-2023-rust
Last synced: about 2 months ago
JSON representation
Advent of Code 2023 solutions.
- Host: GitHub
- URL: https://github.com/mminer/aoc2023
- Owner: mminer
- Created: 2023-12-01T17:21:27.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-04T21:47:06.000Z (about 1 year ago)
- Last Synced: 2024-04-14T22:17:39.411Z (9 months ago)
- Topics: advent-of-code, advent-of-code-2023, advent-of-code-2023-rust
- Language: Rust
- Homepage: https://adventofcode.com
- Size: 31.3 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
My solutions for [Advent of Code 2023](https://adventofcode.com). Using Rust for
the learning opportunity.```sh
rustc day01.rs && ./day01 < input
```To run tests:
```sh
rustc --test day01.rs && ./day01
```