Count Good Nodes in Binary Tree - Kotlin (Medium)
Feb 19, 2022 · 1 min read · Given a binary tree root, a node X in the tree is named good if in the path from root to X there are no nodes with a value greater than X. Return the number of good nodes in the binary tree. Example 1: Input: root = [3,1,4,3,null,1,5] Output: 4 Exp...
Join discussion



