You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 8, 2023. It is now read-only.
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.
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
...