Skip to content

Instantly share code, notes, and snippets.

@sofhiasouza
Created May 6, 2019 02:39
Show Gist options
  • Save sofhiasouza/4a7686671c2c936e8f7861d30dac0794 to your computer and use it in GitHub Desktop.
Save sofhiasouza/4a7686671c2c936e8f7861d30dac0794 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); //Adiciona o elemento 5 no set
t.insert(12); //Adiciona o elemento 12 no set
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment