Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yohey03518/647b30088fb21e263197812ad06dffe5 to your computer and use it in GitHub Desktop.
Save yohey03518/647b30088fb21e263197812ad06dffe5 to your computer and use it in GitHub Desktop.
[TestMethod]
public void OneNode_Return1()
{
No104_MaximumDepthofBinaryTree.TreeNode root = new No104_MaximumDepthofBinaryTree.TreeNode(1);
int depth = solution.MaxDepth(root);
Assert.AreEqual(1, depth);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment