Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abeltay/advent-of-code-2023
My attempt at https://adventofcode.com/2023
https://github.com/abeltay/advent-of-code-2023
advent-of-code advent-of-code-2023 adventofcode go golang
Last synced: 22 days ago
JSON representation
My attempt at https://adventofcode.com/2023
- Host: GitHub
- URL: https://github.com/abeltay/advent-of-code-2023
- Owner: abeltay
- License: mit
- Created: 2023-11-29T15:57:10.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-27T14:57:28.000Z (about 1 year ago)
- Last Synced: 2024-04-28T05:33:01.705Z (9 months ago)
- Topics: advent-of-code, advent-of-code-2023, adventofcode, go, golang
- Language: Go
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Go](https://github.com/abeltay/advent-of-code-2023/actions/workflows/go.yml/badge.svg)](https://github.com/abeltay/advent-of-code-2023/actions/workflows/go.yml)
# Advent of Code 2023
My attempt at
> Note: All task input files are excluded from the repository with ".gitignore" – we should not post them publicly, as Eric Wastl asks for: [Tweet](https://twitter.com/ericwastl/status/1465805354214830081).
# To run the scripts
1. Run `make DAY=01 prep` with the day number. The example here is for Day 01
2. Run `make input` to download the input file into the day's folder
3. Run `make test` to run current day's file## To set up cookie for `make input`
1. Login to [AoC](https://adventofcode.com/)
2. Most requests should use your session cookie, copy it. It starts with "session=" until ";"
3. Put it into "cookie.txt"## To test the template
1. Set "day.txt" to "template"
2. Run `make test`