Skip to content

Commit 39b1f58

Browse files
authored
Update maximal-network-rank.cpp
1 parent 446fd2a commit 39b1f58

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

C++/maximal-network-rank.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ class Solution {
1414
}
1515
vector<int> sorted_idx(n);
1616
iota(begin(sorted_idx), end(sorted_idx), 0);
17-
sorted_idx= counting_sort(sorted_idx,
18-
[&degree](const auto& x) {
19-
return degree[x];
20-
},
21-
true);
17+
sorted_idx = counting_sort(sorted_idx,
18+
[&degree](const auto& x) {
19+
return degree[x];
20+
},
21+
true);
2222
int m = 2;
2323
for (; m < n; ++m) {
2424
if (degree[sorted_idx[m]] != degree[sorted_idx[1]]) {

0 commit comments

Comments
 (0)