You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
V
vector<int> TeamBuilder::specialLocations(vector<string> paths){
int N = paths.size();
vector<vector<int> > adj;
for(int i = 0; i < N; i ++){
string s = paths[i];
vector<int> row;
for(int j = 0; j < N; j++){
row.push_back(s[j] -'0');
}...