This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Description
Hello !
Describe the bug
I noticed that the TODO list in unordered_map/README.md contains duplicated items such as count and find.
One entry is checked while the other is unchecked and might be removed.
To Reproduce
Go to unordered_map/README.md, you will see this :
✔️ count
✔️ find
...
❌ count
❌ find
Expected behavior
Unchecked duplicates should be removed like this :
✔️ count
✔️ find
...