Skip to main content
Latest
File
package check_completeness_of_a_binary_tree
func IsCompleteTree(root *TreeNode) bool { return isCompleteTree(root)}