https://github.com/zsarge/advent-of-code-2022
Advent of Code 2022 (adventofcode.com)
https://github.com/zsarge/advent-of-code-2022
advent-of-code aoc-2022 aoc-2022-in-ruby
Last synced: about 1 year ago
JSON representation
Advent of Code 2022 (adventofcode.com)
- Host: GitHub
- URL: https://github.com/zsarge/advent-of-code-2022
- Owner: zsarge
- License: mit
- Created: 2022-12-06T02:49:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T20:30:05.000Z (over 3 years ago)
- Last Synced: 2025-01-27T14:49:33.274Z (over 1 year ago)
- Topics: advent-of-code, aoc-2022, aoc-2022-in-ruby
- Language: Ruby
- Homepage:
- Size: 67.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [Advent of Code 2022](https://adventofcode.com/2022)
## My Advent of Code Solutions
(Click a number to view the associated solution.)
| [1](solutions/01/solve1.rb) | [2](solutions/02/solve2.rb) | [3](solutions/03/solve3.rb) | [4](solutions/04/solve4.rb) | [5](solutions/05/solve5.rb) |
| --------------------------- | --------------------------- | --------------------------- | --------------------------- | --------------------------- |
| [6](solutions/06/solve6.rb) | [7](solutions/07/solve7.rb) | [8](solutions/08/solve8.rb) | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 |
## Code Quality
These solutions emphasize readability.
While readability is a subjective metric,
I really just don't want these solutions to
look like code golf.
## Miscellaneous
I have some scripts set up to make working on problems a smoother experience:
- [`addSolution.rb`](addSolution.rb) takes a problem number, creates the associated folder and solution template, and creates an input file to paste into.
- [`generateReadme.rb`](generateReadme.rb) generates this readme based on the files in the solutions folder.
Some of the scripts were reused from [my Project Euler solutions](https://github.com/zsarge/ProjectEuler).
My previous years include:
- [2020](https://github.com/zsarge/AdventOfCode2020)
- [2021](https://github.com/zsarge/advent-of-code-2021)
Code by [Zack Sargent](https://github.com/zsarge).