rakcode1998

Untitled

Mar 5th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. struct comps
  2. {
  3.     bool operator()(set<int>a,set<int>b)
  4.     {
  5.        if(a.size()<b.size())
  6.        return false;
  7.        else
  8.        return true;
  9.     }
  10. };
  11.  
  12.  map<set<int>,int,comps>check;
Add Comment
Please, Sign In to add comment