Skip to content

Commit c6d88fb

Browse files
committed
chore: update cpp
1 parent 05cd40a commit c6d88fb

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

solution/3300-3399/3310.Remove Methods From Project/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,13 @@ public:
227227
for (int j : f[i]) {
228228
if (!vis[j]) {
229229
suspicious[j] = false;
230-
dfs2(dfs2, j);
230+
dfs2(j);
231231
}
232232
}
233233
};
234234
for (int i = 0; i < n; ++i) {
235235
if (!suspicious[i] && !vis[i]) {
236-
dfs2(dfs2, i);
236+
dfs2(i);
237237
}
238238
}
239239
vector<int> ans;

solution/3300-3399/3310.Remove Methods From Project/README_EN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,13 +225,13 @@ public:
225225
for (int j : f[i]) {
226226
if (!vis[j]) {
227227
suspicious[j] = false;
228-
dfs2(dfs2, j);
228+
dfs2(j);
229229
}
230230
}
231231
};
232232
for (int i = 0; i < n; ++i) {
233233
if (!suspicious[i] && !vis[i]) {
234-
dfs2(dfs2, i);
234+
dfs2(i);
235235
}
236236
}
237237
vector<int> ans;

solution/3300-3399/3310.Remove Methods From Project/Solution.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ class Solution {
2525
for (int j : f[i]) {
2626
if (!vis[j]) {
2727
suspicious[j] = false;
28-
dfs2(dfs2, j);
28+
dfs2(j);
2929
}
3030
}
3131
};
3232
for (int i = 0; i < n; ++i) {
3333
if (!suspicious[i] && !vis[i]) {
34-
dfs2(dfs2, i);
34+
dfs2(i);
3535
}
3636
}
3737
vector<int> ans;

0 commit comments

Comments
 (0)