Problem | splithunny |
---|---|
User | JIZHE |
Submission Time | 2023-01-30 17:30:54 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
splithunny.cpp:5:29: error: declaration of ‘hayden’ as multidimensional array must have bounds for all dimensions except the first
5 | void dfs(int x, int y, bool hayden[][]) {
| ^~~~~~
splithunny.cpp: In function ‘void dfs(...)’:
splithunny.cpp:6:6: error: ‘y’ was not declared in this scope
6 | if(y < 0 || x < 0 || x >= e || y >= n) continue;
| ^
splithunny.cpp:6:15: error: ‘x’ was not declared in this scope
6 | if(y < 0 || x < 0 || x >= e || y >= n) continue;
| ^
splithunny.cpp:6:42: error: continue statement not within a loop
6 | if(y < 0 || x < 0 || x >= e || y >= n) continue;
| ^~~~~~~~
splithunny.cpp:7:6: error: ‘hayden’ was not declared in this scope
7 | if(hayden[x][y]) continue;
| ^~~~~~
splithunny.cpp:7:13: error: ‘x’ was not declared in this sc