DEV Community

Tanuja V
Tanuja V

Posted on • Edited on

2 1

Univalued Binary Tree | LeetCode | Java

class Solution {
    public boolean isUnivalTree(TreeNode root) {
        return checkUniValue(root, root.val);
    }

    boolean checkUniValue(TreeNode node, int val){
        if(node==null)
            return true;

        if(node.val!=val)
            return false;

        return (checkUniValue(node.left, val) && checkUniValue(node.right, val));
    }
}
Enter fullscreen mode Exit fullscreen mode

Thanks for reading :)
Feel free to comment and like the post if you found it helpful
Follow for more 🤝 && Happy Coding 🚀

If you enjoy my content, support me by following me on my other socials:
https://linktr.ee/tanujav7

Top comments (0)

Heroku

This site is built on Heroku

Join the ranks of developers at Salesforce, Airbase, DEV, and more who deploy their mission critical applications on Heroku. Sign up today and launch your first app!

Get Started

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay