gibsjose / cpp-cheat-sheet

C++ Syntax, Data Structures, and Algorithms Cheat Sheet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Code example for std::set is using invalid methods.

tamaroth opened this issue · comments

Hello,

First, thanks for the great resource! I just wanted to point out that std::set does not contain method remove as it is indicated in your code example. Instead std::set::erase should be used.

Thanks again,
tamaroth

Fixed, thank you!