Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ main
Function
main
CSES/Intro/CheesboardAndQueens.cc:41–52 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
39
}
40
41
int main(){
42
ios_base::sync_with_stdio(false),cin.tie(nullptr);
43
44
for(int i = 0; i < 8; ++i) {
45
for (int j = 0; j < 8; ++j) {
46
cin >> grid[i][j];
47
}
48
}
49
dfs(0,0);
50
cout << cnt << endl;
51
return 0;
52
}
53
54
Callers
nothing calls this directly
Calls
1
dfs
Function · 0.70
Tested by
no test coverage detected