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.
1 parent 6db5067 commit 6e779cdCopy full SHA for 6e779cd
content/profiling.md
@@ -95,6 +95,7 @@ def count_unique_words3(file_path: str) -> int:
95
96
97
def main():
98
+ # book.txt is downloaded from https://www.gutenberg.org/cache/epub/2600/pg2600.txt
99
_result = count_unique_words1("book.txt")
100
_result = count_unique_words2("book.txt")
101
_result = count_unique_words3("book.txt")
@@ -138,6 +139,6 @@ if __name__ == "__main__":
138
139
instead of reading the whole file into memory.
140
- It is good to get an overview over standard data structures and their
141
advantages and disadvantages (e.g. adding an element to a list is fast but checking whether
- it already contains the element is slow).
142
+ it already contains the element can be slow).
143
:::
144
::::
0 commit comments