We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cbe4ca9 + a5109e5 commit e4e233aCopy full SHA for e4e233a
.gitignore
@@ -24,4 +24,6 @@ x64
24
*.exe
25
26
!suffix-array.pdf
27
-!cheat_sheet.pdf
+!cheat_sheet.pdf
28
+
29
+contents.tex
generate_pdf.py
@@ -12,10 +12,10 @@ def get_sections():
12
line = line.strip()
13
if len(line) == 0: continue
14
if line[0] == '[':
15
- if section_name is not None:
16
- sections.append((section_name, subsections))
17
section_name = line[1:-1]
18
subsections = []
+ if section_name is not None:
+ sections.append((section_name, subsections))
19
else:
20
tmp = line.split('\t', 1)
21
if len(tmp) == 1:
notebook.pdf
21.2 KB
0 commit comments