Skip to content

Commit 6b34b8f

Browse files
authored
Update longest-path-with-different-adjacent-characters.cpp
1 parent 62ca2fb commit 6b34b8f

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

C++/longest-path-with-different-adjacent-characters.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ class Solution {
1515
const auto& topological_sort = [&s, &adj](vector<int> *in_degree) {
1616
int result = 1;
1717
unordered_map<int, vector<int>> top2;
18-
1918
vector<pair<int, int>> q;
2019
for (int i = 0; i < size(*in_degree); ++i) {
2120
if (!(*in_degree)[i]) {

0 commit comments

Comments
 (0)