Skip to content

Commit 2bbcc32

Browse files
authored
Merge pull request #28 from obalunenko/2016/day01
2016/day01
2 parents 2072ed0 + 111b10a commit 2bbcc32

File tree

19 files changed

+588
-25
lines changed

19 files changed

+588
-25
lines changed

.github/workflows/test-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Cover report
7070
if: success()
7171
run: |
72-
bash <(curl -s https://codecov.io/bash)
72+
bash <(curl -s https://codecov.io/bash) -f ./coverage/full.cov
7373
7474
- name: Install GoReleaser
7575
uses: goreleaser/goreleaser-action@v2

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@
1717
bin/
1818
dist/
1919
release/
20-
.DS_Store
20+
.DS_Store
21+
coverage/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ This repository contains solutions for puzzles and cli tool to run solutions to
5959
<details>
6060
<summary>2016</summary>
6161

62-
- [ ] [Day 1: No Time for a Taxicab](https://adventofcode.com/2016/day/1)
62+
- [x] [Day 1: No Time for a Taxicab](https://adventofcode.com/2016/day/1)
6363
- [ ] [Day 2: Bathroom Security](https://adventofcode.com/2016/day/2)
6464
- [ ] [Day 3: Squares With Three Sides](https://adventofcode.com/2016/day/3)
6565
- [ ] [Day 4: Security Through Obscurity](https://adventofcode.com/2016/day/4)

cmd/aoc-cli/main.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ import (
1111
log "github.com/sirupsen/logrus"
1212
"github.com/urfave/cli"
1313

14-
"github.com/obalunenko/advent-of-code/internal/input"
1514
"github.com/obalunenko/advent-of-code/internal/puzzles"
16-
15+
"github.com/obalunenko/advent-of-code/internal/puzzles/input"
1716
// register all solutions.
1817
_ "github.com/obalunenko/advent-of-code/internal/puzzles/solutions"
1918
)
File renamed without changes.
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
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
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)