fork download
  1. #include <iostream>
  2. #include <string>
  3. #include <unordered_set>
  4. using namespace std;
  5.  
  6. static unordered_set<string> f = {"a", "b", "c"};
  7.  
  8. int main() {
  9. cout << f.size();
  10. return 0;
  11. }
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
3