Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 81e9c99

Browse files
authored
2020 Day 06 (#22)
* 2020 Day 06 * Adjust skeleton input read
1 parent 4e191b9 commit 81e9c99

File tree

6 files changed

+2323
-1
lines changed

6 files changed

+2323
-1
lines changed

2020/06/Makefile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.PHONY: all
2+
all:
3+
@python main.py input-full.txt
4+
5+
.PHONY: sample
6+
sample:
7+
@python main.py input-sample.txt
8+
9+
.PHONY: format
10+
format:
11+
@black .
12+
13+
.PHONY: lint
14+
lint:
15+
@black --check .
16+
17+
.PHONY: type-check
18+
type-check:
19+
@mypy .
20+
21+
.PHONY: test
22+
test:
23+
@pytest .

0 commit comments

Comments
 (0)