Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Cover report
if: success()
run: |
bash <(curl -s https://codecov.io/bash)
bash <(curl -s https://codecov.io/bash) -f ./coverage/full.cov

- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v2
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@
bin/
dist/
release/
.DS_Store
.DS_Store
coverage/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This repository contains solutions for puzzles and cli tool to run solutions to
<details>
<summary>2016</summary>

- [ ] [Day 1: No Time for a Taxicab](https://adventofcode.com/2016/day/1)
- [x] [Day 1: No Time for a Taxicab](https://adventofcode.com/2016/day/1)
- [ ] [Day 2: Bathroom Security](https://adventofcode.com/2016/day/2)
- [ ] [Day 3: Squares With Three Sides](https://adventofcode.com/2016/day/3)
- [ ] [Day 4: Security Through Obscurity](https://adventofcode.com/2016/day/4)
Expand Down
3 changes: 1 addition & 2 deletions cmd/aoc-cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ import (
log "github.com/sirupsen/logrus"
"github.com/urfave/cli"

"github.com/obalunenko/advent-of-code/internal/input"
"github.com/obalunenko/advent-of-code/internal/puzzles"

"github.com/obalunenko/advent-of-code/internal/puzzles/input"
// register all solutions.
_ "github.com/obalunenko/advent-of-code/internal/puzzles/solutions"
)
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions internal/puzzles/input/data/2016/day01.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
R1, R3, L2, L5, L2, L1, R3, L4, R2, L2, L4, R2, L1, R1, L2, R3, L1, L4, R2, L5, R3, R4, L1, R2, L1, R3, L4, R5, L4, L5, R5, L3, R2, L3, L3, R1, R3, L4, R2, R5, L4, R1, L1, L1, R5, L2, R1, L2, R188, L5, L3, R5, R1, L2, L4, R3, R5, L3, R3, R45, L4, R4, R72, R2, R3, L1, R1, L1, L1, R192, L1, L1, L1, L4, R1, L2, L5, L3, R5, L3, R3, L4, L3, R1, R4, L2, R2, R3, L5, R3, L1, R1, R4, L2, L3, R1, R3, L4, L3, L4, L2, L2, R1, R3, L5, L1, R4, R2, L4, L1, R3, R3, R1, L5, L2, R4, R4, R2, R1, R5, R5, L4, L1, R5, R3, R4, R5, R3, L1, L2, L4, R1, R4, R5, L2, L3, R4, L4, R2, L2, L4, L2, R5, R1, R4, R3, R5, L4, L4, L5, L5, R3, R4, L1, L3, R2, L2, R1, L3, L5, R5, R5, R3, L4, L2, R4, R5, R1, R4, L3
Loading