Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rageknify/advent_of_code_2019
My Rust solutions for the Advent of Code 2019
https://github.com/rageknify/advent_of_code_2019
advent rust-solutions
Last synced: 24 days ago
JSON representation
My Rust solutions for the Advent of Code 2019
- Host: GitHub
- URL: https://github.com/rageknify/advent_of_code_2019
- Owner: RageKnify
- License: gpl-3.0
- Created: 2019-12-15T11:36:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-23T18:11:14.000Z (about 5 years ago)
- Last Synced: 2024-10-30T06:16:03.495Z (2 months ago)
- Topics: advent, rust-solutions
- Language: Rust
- Homepage:
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent of Code 2019
This repository has my rust solutions for Advent of Code 2019
## Structure
Each day has its own directory.
Each directory contains:
* `#part.rs` source file for each part
* my input file, `inp.txt`## Compiling and Running
running `rustc #part.rs` will create an executable named `#part`
run it with the input file as stdin: `./#part < inp.txt`