10000 Rename Maximun_Depth_of_Binary_Tree.cc to Maximum_Depth_of_Binary_Tre… · zwxalgorithm/leetcode-2@99c7347 · GitHub
[go: up one dir, main page]

Skip to content

Commit 99c7347

Browse files
committed
Rename Maximun_Depth_of_Binary_Tree.cc to Maximum_Depth_of_Binary_Tree.cc
Fix name's bug via @jesse Wang
1 parent d175c80 commit 99c7347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Maximun_Depth_of_Binary_Tree.cc renamed to Maximum_Depth_of_Binary_Tree.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ class Solution {
1717
}
1818
return max(maxDepth(root->left), maxDepth(root->right)) + 1;
1919
}
20-
};
20+
};

0 commit comments

Comments
 (0)
0