worldmap.cpp: In function 'std::vector<std::vector<int> > create_map(int, int, std::vector<int>, std::vector<int>)':
worldmap.cpp:38:17: error: 'cnt' was not declared in this scope; did you mean 'int'?
38 | ans[cnt][j] = et[i];
| ^~~
| int
worldmap.cpp:41:17: error: 'cnt' was not declared in this scope; did you mean 'int'?
41 | ans[cnt + 1][j] = et[i];
| ^~~
| int
worldmap.cpp:44:17: error: 'cnt' was not declared in this scope; did you mean 'int'?
44 | ans[cnt + 2][j] = et[i];
| ^~~
| int
worldmap.cpp:47:17: error: 'cnt' was not declared in this scope; did you mean 'int'?
47 | ans[cnt + 1][j] = adj[(i/2) + 1][j/2];
| ^~~
| int
worldmap.cpp:49:9: error: 'cnt' was not declared in this scope; did you mean 'int'?
49 | cnt += 3;
| ^~~
| int