hiccup.cpp: In function 'void dfs(int)':
hiccup.cpp:15:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | for (int i=0; i<adj[u].size(); ++i) {
| ~^~~~~~~~~~~~~~
hiccup.cpp: In function 'int HicCup(std::string)':
hiccup.cpp:23:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int i=0; i<s.size(); ++i) {
| ~^~~~~~~~~
hiccup.cpp:39:6: error: too few arguments to function 'void dfs(int)'
39 | dfs();
| ^
hiccup.cpp:10:6: note: declared here
10 | void dfs(int u) {
| ^~~