https://github.com/fguchelaar/adventofcode2021
Solutions for the '21 version of Advent of Code
https://github.com/fguchelaar/adventofcode2021
Last synced: 3 months ago
JSON representation
Solutions for the '21 version of Advent of Code
- Host: GitHub
- URL: https://github.com/fguchelaar/adventofcode2021
- Owner: fguchelaar
- Created: 2021-11-30T22:53:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-25T23:10:16.000Z (over 3 years ago)
- Last Synced: 2025-02-05T04:43:01.579Z (5 months ago)
- Language: Swift
- Homepage:
- Size: 1.05 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code 2021
My solutions for the seventh installment of [Advent of Code](https://adventofcode.com/2021).
## Creating the 'packages'
I've prepared a _Template_ that can be used for each day, containing a package
of type `executable`. Just copy the template and set the correct number where
_NN_ is used.## Running the solutions
Simply run `swift run` in a folder to run the solution and get the answers. For
better perfomance use `swift run -c release`.For most days I've created unit-tests based on the example inputs. Run those
with `swift test`.