Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lesson4/stations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class Graph {
// adjacent node id).
graph_[currentNodeId].push_back(std::make_pair(weight, adjacentNodeId));
graph_[adjacentNodeId].push_back(std::make_pair(weight, currentNodeId));
// ALEXNOTE: comment from other exiercise holds true here as well
}
}

Expand Down Expand Up @@ -192,4 +193,4 @@ int main() {
check(graphObj, stations, startStationName, targetStationName);
}
return 0;
}
}