https://github.com/yanun0323/advent-of-code
https://github.com/yanun0323/advent-of-code
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/yanun0323/advent-of-code
- Owner: yanun0323
- Created: 2022-12-01T19:32:36.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T22:06:20.000Z (over 2 years ago)
- Last Synced: 2025-01-17T12:35:18.366Z (3 months ago)
- Language: Go
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Advent Of Code (2022)
https://adventofcode.com## Requirement
*go version 1.19 or above*## Usage
#### Setup
```bash
$ cp ./config.yaml.sample ./config.yaml
```
- Also, add your browser session into `config.yaml`#### Run Code
```bash
$ DAY={day} make run
# example:
# DAY=1 make run
#
# program will get the puzzle input from url "`url.prefix` + 1 + `url.suffix`""
# and try to run Solution method Day1()
```