squarerect.cpp: In function 'bool am_i_square(int, int)':
squarerect.cpp:8:38: error: 'n' was not declared in this scope
8 | std::vector<std::vector<ll>> adj(n , std::vector<ll>(n));
| ^
squarerect.cpp:17:3: error: expected ';' before 'b'
17 | ll b = 0;
| ^~
| ;
squarerect.cpp:18:3: error: expected ';' before 'bb'
18 | ll bb = 0;
| ^~~
| ;
squarerect.cpp:21:29: error: expected ';' before 'continue'
21 | (adj[i][j] == 0)continue;
| ^~~~~~~~
| ;
squarerect.cpp:28:33: error: 'b' was not declared in this scope
28 | for(int i = 0 ; i < N , b <=0; i++){
| ^
squarerect.cpp:30:29: error: expected ';' before 'continue'
30 | (adj[j][i] == 0)continue;
| ^~~~~~~~
| ;
squarerect.cpp:31:32: error: 'bb' was not declared in this scope
31 | if(adj[j][i] == 1) bb++;
| ^~
squarerect.cpp:34:9: error: 'bb' was not declared in this scope
34 | b = bb;
| ^~
squarerect.cpp:37:12: error: 'b' was not declared in this scope
37 | if(l == b){
| ^
squarerect.cpp:43:1: warning: control reaches end of non-void function [-Wreturn-type]
43 | }
| ^