Skip to content

Commit ddb52cd

Browse files
authored
Update minimize-malware-spread-ii.cpp
1 parent d43b37a commit ddb52cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

C++/minimize-malware-spread-ii.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ class Solution {
3333
}
3434
}
3535
}
36+
3637
int result = numeric_limits<int>::max();
3738
int total = numeric_limits<int>::min();
38-
for (const auto& i: initial) {
39+
for (const auto& i : initial) {
3940
unordered_set<int> lookup;
4041
int curr = 0;
4142
for (const auto& j : clean) {

0 commit comments

Comments
 (0)