please help me debug this code
test cases aren’t passing
please help me debug this code
test cases aren’t passing
@mansi2000
The problem is a simple implementation of DFS while maintaining a count of children of the vertices visited. Let u be a vertex and v be its child. Then, check if children[v]>children[u].This way, check for each vertex while traversing the graph in DFS. One important thing to note that actually there are many trees in the input(a graph with no cycles and self-loops is a tree). That means you have to apply DFS for each of these trees.
You can refer to the following code for better understanding: