https://github.com/eordo/advent-of-code
My Julia solutions to Advent of Code
https://github.com/eordo/advent-of-code
advent-of-code aoc julia
Last synced: 12 months ago
JSON representation
My Julia solutions to Advent of Code
- Host: GitHub
- URL: https://github.com/eordo/advent-of-code
- Owner: eordo
- Created: 2025-02-19T06:16:01.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-28T03:36:27.000Z (about 1 year ago)
- Last Synced: 2025-03-28T04:30:09.143Z (about 1 year ago)
- Topics: advent-of-code, aoc, julia
- Language: Julia
- Homepage: https://adventofcode.com/
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent of Code
This repository is for my Julia solutions to [Advent of Code](https://adventofcode.com/).
I'm attempting to complete every calendar starting from 2015.
## Getting puzzle inputs
`get_input.py` is a Python script that I use to automate getting and saving puzzle inputs.
After logging in to Advent of Code, save the session cookie in a file named `session.txt`.
Then the puzzle input for any year and day can be fetched from the command line by running
```bash
python get_input.py YEAR DAY
```
The input will be saved to `/YEAR/inputs/day_DAY.txt`.