https://github.com/namchee/aoc-2022
Advent of Code 2022, written in Rust
https://github.com/namchee/aoc-2022
Last synced: over 1 year ago
JSON representation
Advent of Code 2022, written in Rust
- Host: GitHub
- URL: https://github.com/namchee/aoc-2022
- Owner: Namchee
- Created: 2022-11-20T02:35:09.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-16T01:57:51.000Z (over 3 years ago)
- Last Synced: 2025-01-30T03:28:08.681Z (over 1 year ago)
- Language: Rust
- Size: 92.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2022 Solutions
Advent of Code 2022, written in Rust. Made solely for educational purposes.
## How to run
1. Ensure that you have Rust installed.
2. Clone this repository.
3. Execute `cargo run -- ` to print solution for problem ``
## Directories
### `input`
The `input` folder is used to store sample inputs in form of a `.txt` file. All file should have `day.txt` format where `` denotes problem's day.
TBD