HackerRank - Height of a Binary Tree | Full solution with code and animations | Study Algorithms

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ม.ค. 2025

ความคิดเห็น • 13

  • @bittujacob8776
    @bittujacob8776 3 ปีที่แล้ว +1

    Yes true, very underrated channel! Come on TH-cam!

  • @Ayush-yk6zf
    @Ayush-yk6zf 3 ปีที่แล้ว

    Really a underrated channel. Great explanation.Thank you sir

  • @bigjofa
    @bigjofa หลายเดือนก่อน

    Fantastic explanation, this deserves way more likes, thanks man! Your help while studying for interviews is invaluable, I hope great things happen for you and your family, keep up the good work!! 😀

    • @nikoo28
      @nikoo28  หลายเดือนก่อน

      that is so heartwarming :)

  • @Sana-oi6mw
    @Sana-oi6mw ปีที่แล้ว

    Good explanation sir jii

    • @nikoo28
      @nikoo28  ปีที่แล้ว

      you are welcome!!

  • @mashapoguajay3322
    @mashapoguajay3322 3 ปีที่แล้ว

    What is an ootimized soln

    • @nikoo28
      @nikoo28  3 ปีที่แล้ว +1

      An optimized solution is one which will consume the minimum memory and time possible to determine the answer

    • @mashapoguajay3322
      @mashapoguajay3322 3 ปีที่แล้ว

      @@nikoo28 bro during online coding interview s we have to write only optimization solution

    • @nikoo28
      @nikoo28  3 ปีที่แล้ว +2

      That's correct. If you check the link in description to my github profile, you can find the optimized solution. The video also covers the optimized approach.

    • @mashapoguajay3322
      @mashapoguajay3322 3 ปีที่แล้ว

      Bro by using max(lh,rh) recursive approch and adding 1 we can get max deapth no

    • @nikoo28
      @nikoo28  3 ปีที่แล้ว +1

      Yes, but even then you take up the memory space in your recursion stack.