LeetCode
===
Question 1:
Date:2020.12.12

```C++
class Solution {
public:
int maxDepth(TreeNode* root) {
if(!root) return 0;
int left = maxDepth(root->left);
int right = maxDepth(root->right);
return (left > right ? left : right)+1;
}
};
```