Count Good Nodes in Binary Tree: Leetcode 75 in Tamil (தமிழ்)

  Рет қаралды 115

Indic Coder

Indic Coder

Күн бұрын

Пікірлер: 9
@HeroHunter07
@HeroHunter07 7 күн бұрын
Nice explanation 🎉
@Graduate-Hands
@Graduate-Hands 2 ай бұрын
Thank you for Sharing Very Valuable Contents .. Keep Going 😊
@indiccoder
@indiccoder Ай бұрын
Thank you 😁
@prabhup2241
@prabhup2241 2 ай бұрын
Thank you bro for the video! There are only few creators who give leetcode content in Tamil. Nandigal🙏🏻
@indiccoder
@indiccoder Ай бұрын
Thank you bro! I'm glad it was helpful 😊
@SANJAI692
@SANJAI692 2 ай бұрын
bro please put all the 75 questions bro romba helpfula irukum bro.
@indiccoder
@indiccoder Ай бұрын
Yes bro, have resumed the playlist again.
@indiccoder
@indiccoder 2 ай бұрын
Java Solution: class Solution { public int goodNodes(TreeNode root) { return count(root,Integer.MIN_VALUE); } public int count(TreeNode node, int maxValue) { if(node==null) { return 0; } int isGood = 0; if (node.val>=maxValue) { isGood = 1; maxValue = node.val; } return isGood + count(node.left,maxValue) + count(node.right,maxValue); } }
Single Number: Leetcode 75 in Tamil (தமிழ்)
5:58
Indic Coder
Рет қаралды 189
Grigori Perelman documentary
43:58
Roman Kunin
Рет қаралды 1,1 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
L27. Lowest Common Ancestor in Binary Tree | LCA | C++ | Java
14:09
take U forward
Рет қаралды 346 М.
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН