-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Advent of Code | ||
|
||
This repo contains my solutions to [Eric Wastl](http://was.tl/)'s [Advent of Code](https://adventofcode.com/). The repo is organized by year and day, so you can find my solution to [2015 day 9](https://adventofcode.com/2015/day/9) in [`src/2015/9.rs`](./src/2015/9.rs). Each file further contains functions named `part1` and `part2` corresponding to each part of the problem. | ||
My solutions to [Eric Wastl](http://was.tl/)'s [Advent of Code](https://adventofcode.com/) :) | ||
|
||
Documentation is sparse to try and comply with Eric's [rules about copying](https://adventofcode.com/2015/about#faq_copying). To understand what each problem is doing, check the Advent of Code website. | ||
The repo is organized by year and day, so you can find my solution to e.g. [2015 day 9](https://adventofcode.com/2015/day/9) in [`src/2015/09.rs`](./src/2015/09.rs). | ||
|
||
To comply with Eric's [rules about copying](https://adventofcode.com/about#faq_copying), I avoid copying any text from the problems -- so to understand what each solution is solving, you'll want to check the corresponding AoC page. |