Skip to content

Commit e021ff4

Browse files
committed
fix grammar error and upload pdf
1 parent a136625 commit e021ff4

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
1+
.DEFAULT_GOAL := all
2+
13
INPUT_FILE = README.md
24
OUTPUT_FILE = artifacts/python-for-coding-interview.pdf
35

46
.PHONY: linter
57
linter:
6-
markdownlint README.md --disable MD013 MD025
8+
markdownlint $(INPUT_FILE) --disable MD013 MD025
79

810
.PHONY: pdf
911
pdf:
1012
pandoc $(INPUT_FILE) \
1113
--pdf-engine=xelatex \
1214
-M date="`date "+%B%e, %Y"`" \
1315
-o $(OUTPUT_FILE)
16+
17+
.PHONY: all
18+
all: linter pdf

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ geometry: margin=1in
99
This guide includes a list of several and useful `Python` data structures to know for coding interviews.
1010

1111
It is intended to show the main data structures incorporated in the language
12-
and their useful functions. More advance `Python` feature will not be shown here.
12+
and their useful functions. More advance `Python` features will not be shown here.
1313

1414
Additional material:
1515

60.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)