Skip to content

Instantly share code, notes, and snippets.

@sofhiasouza
Created May 6, 2019 02:42
Show Gist options
  • Save sofhiasouza/ba1660da97317fa27ca8ffd3bed4b586 to your computer and use it in GitHub Desktop.
Save sofhiasouza/ba1660da97317fa27ca8ffd3bed4b586 to your computer and use it in GitHub Desktop.
#include <set> //biblioteca do set
using namespace std;
int main(){
set<int> t;
t.insert(5);
t.insert(12);
t.erase(5); //remove o elemento 5 do set
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment