Guest User

Untitled

a guest
May 27th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <set>
  2. #include <iostream>
  3. using std::set;
  4. using std::cout;
  5. using std::endl;
  6. #include <rice/Data_Type.hpp>
  7.  
  8. /*
  9. int main() {
  10. set<uint> A;
  11. A.insert(1);
  12. A.insert(2);
  13. A.insert(3);
  14. set<uint> B;
  15. B.insert(3);
  16. B.insert(2);
  17. B.insert(4);
  18.  
  19. set<uint> C(A);
  20.  
  21. return 0;
  22. } */
  23.  
  24. void init_main() {
  25.  
  26. }
Add Comment
Please, Sign In to add comment