An open API service indexing awesome lists of open source software.

https://github.com/yanun0323/advent-of-code


https://github.com/yanun0323/advent-of-code

Last synced: about 1 month ago
JSON representation

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()
```