Fix uuid and toc

This commit is contained in:
Satwik 2020-07-10 22:34:22 +05:30
parent ee70d52fe4
commit f72d7325fa
1 changed files with 3 additions and 3 deletions

6
README.md vendored
View File

@ -92,7 +92,7 @@ So, here we go...
* [Section: Miscellaneous](#section-miscellaneous)
+ [ `+=` is faster](#--is-faster)
+ [ Let's make a giant string!](#-lets-make-a-giant-string)
+ [ `dict` lookup performance](#-slowing-down-dict-lookups)
+ [ Slowing down `dict` lookups *](#-slowing-down-dict-lookups)
+ [ Minor Ones *](#-minor-ones-)
- [Contributing](#contributing)
- [Acknowledgements](#acknowledgements)
@ -3349,8 +3349,8 @@ Let's increase the number of iterations by a factor of 10.
---
### ▶ Slowing down `dict` lookups
### ▶ Slowing down `dict` lookups *
<!-- Example ID: c9c26ce6-df0c-47f7-af0b-966b9386d4c3 --->
```py
some_dict = {str(i): 1 for i in range(1_000_000)}
another_dict = {str(i): 1 for i in range(1_000_000)}