Wow, that was an easy and straight forward explanation
@SapanaDashoni-n1o2 ай бұрын
Great explanation!!!
@Idukhan-jj9kc3 жыл бұрын
I heartily appreciate you well done
@reshmaparveen66793 жыл бұрын
Ma'am u r great yr teachings capacity is osm
@KhaiVoHoang-e5s Жыл бұрын
Your video is so helping
@Fahadpro01232 жыл бұрын
Learning something new
@abhaythakur2597 Жыл бұрын
nicely explained
@vedicacademy41282 жыл бұрын
Thank You Mam
@chaitanyakarthikbasva Жыл бұрын
For those asking java implementation, class Solution { public void invert(TreeNode root){ if(root == null){ return; } invert(root.left); invert(root.right); TreeNode temp = root.left; root.left = root.right; root.right = temp; } public TreeNode invertTree(TreeNode root) { invert(root); return root; } } once, you understand the logic, it should be easier for you to implement the solution, you may fail in the beginning but be persistent you will emerge glorious! JAI HIND, JAI BHARAT!!
@devesh096 Жыл бұрын
Thank you Alisha, It would be great if you also write code in Java.