Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unbekanntes-pferd/aoc23-rs
https://github.com/unbekanntes-pferd/aoc23-rs
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/unbekanntes-pferd/aoc23-rs
- Owner: unbekanntes-pferd
- Created: 2023-12-10T22:56:57.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-17T18:21:33.000Z (about 1 year ago)
- Last Synced: 2024-10-15T03:43:33.767Z (3 months ago)
- Language: Rust
- Size: 92.8 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 in Rust btw
🎄 Welcome to the Advent of Code 2023 repository! 🎁
This repository contains solutions and code for the Advent of Code 2023 challenges. Advent of Code is an annual coding
event with daily programming puzzles throughout the month of December. It's a great opportunity to enhance your coding
skills, explore new programming languages, and join a global community of developers in the festive spirit of
problem-solving.## Structure
- Solution: Each day has its own file e.g., `day1.rs`, `day2.rs` it (usually) contains solution for part 1 and part 2 of each
challenge.
- Input: Each day has its own personalized input file and test input in the `assets` folder: `input` and `input_test`
- Tests: (hopefully) all solutions include test cases - to run use `cargo test`## Advent of Code
Learn more about Advent of Code and join the global community at https://adventofcode.com/2023
Let the coding festivities begin! 🚀🌟
## Credit
This README is taken from https://github.com/vlmaier/advent-of-code-2023 and adapted to fit the repo structure