Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ main
Function
main
CPP/questions/word-search.cpp:46–57 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
44
}
45
46
int main() {
47
vector<vector<char>> board = {
48
{
'A'
,
'B'
,
'C'
,
'E'
},
49
{
'S'
,
'F'
,
'C'
,
'S'
},
50
{
'A'
,
'D'
,
'E'
,
'E'
}
51
};
52
string word =
"ABCB"
;
53
54
cout << exist(board, word) << endl;
55
56
return 0;
57
}
Callers
nothing calls this directly
Calls
1
exist
Function · 0.85
Tested by
no test coverage detected