fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. void dfs(string name,unordered_map<string,unordered_set<string>> & adj,
  5. vector<string> & results)
  6. {
  7.  
  8. }
  9.  
  10.  
  11. int main() {
  12. // your code goes here
  13. unordered_map<string,unordered_set<string>> adj;
  14. string name = "service";
  15. vector<string> results;
  16. dfs(name,adj,results);
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
Standard output is empty