# 1448. Count Good Nodes in Binary Tree


題目要求找到 GOOD
也就是root.val>=pre.root.val
那我們就可以用這個道理來判斷
然後依序的左右下去
