You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Detailed description
There is a problem on depth first search so i want to create and push my own code
Context
Other users use my code and help them to understand
Possible implementation
#include<bits/stdc++.h>
using namespace std;
vector vis;
vector<vector> g;
void dfs(int node) {
vis[node] = 1;
}
int main() {
int n, m;
cin >> n >> m;
}
Additional information
No response
The text was updated successfully, but these errors were encountered: