We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0b712 commit 3bbc76bCopy full SHA for 3bbc76b
SAP Silicon Valley Next Talent Program 2019/findDepth.py
@@ -12,4 +12,4 @@ def dfs(root, depth, max_depth):
12
13
if root:
14
for child in root.children:
15
- self.dfs(child, depth + 1, max_depth)
+ dfs(child, depth + 1, max_depth)
0 commit comments