Skip to content

Commit 6e779cd

Browse files
committed
minor
1 parent 6db5067 commit 6e779cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

content/profiling.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ def count_unique_words3(file_path: str) -> int:
9595

9696

9797
def main():
98+
# book.txt is downloaded from https://www.gutenberg.org/cache/epub/2600/pg2600.txt
9899
_result = count_unique_words1("book.txt")
99100
_result = count_unique_words2("book.txt")
100101
_result = count_unique_words3("book.txt")
@@ -138,6 +139,6 @@ if __name__ == "__main__":
138139
instead of reading the whole file into memory.
139140
- It is good to get an overview over standard data structures and their
140141
advantages and disadvantages (e.g. adding an element to a list is fast but checking whether
141-
it already contains the element is slow).
142+
it already contains the element can be slow).
142143
:::
143144
::::

0 commit comments

Comments
 (0)