Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yohey03518/a2f8499a9018976a9d35d02da87dc4de to your computer and use it in GitHub Desktop.
Save yohey03518/a2f8499a9018976a9d35d02da87dc4de to your computer and use it in GitHub Desktop.
public int MaxDepth(TreeNode root)
{
if (root.left == null && root.right == null)
return 1;
else
throw new NotImplementedException();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment