3sum Leetcode Medium | Most popular interview coding question | Three sum leetcode with solution

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 พ.ย. 2024

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

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

    Time Complexity : O(n2)
    Space Complexity : O(n)

  • @diwakarj116
    @diwakarj116 2 หลายเดือนก่อน +2

    Superb explanation thank you for your explanation and demonstration sir

  • @albert.praveen
    @albert.praveen ปีที่แล้ว +2

    the way of teaching verithanam bro ❤‍🔥

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

    Really great explanation... Have watched other explanations in english.. but this is very understandable... Thanks

  • @murali-77
    @murali-77 ปีที่แล้ว +1

    Nice explanation sir !

  • @jayasurya1249
    @jayasurya1249 3 ปีที่แล้ว +4

    thumbnail vera level ya

    • @AlgoTamizha
      @AlgoTamizha  3 ปีที่แล้ว +4

      purinjavan pistah 😂😂

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

      @@AlgoTamizha 😂😂😂😂

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

    Line no: 10 will overright index value sine there are duplicate values in the input.. May be we might need to keep tract of all indexes in a hash as a seperate list collection?

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

    anna its realy helpful

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

      glad you find it helpful.... keep supporting

  • @smile-bi8ng
    @smile-bi8ng ปีที่แล้ว

    Bro doubt hashmap la -1 2 times repeat agirukku value la entha index varum

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

    thank u anna

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

      glad you found it helpful. keep supporting :)

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

    unga upcoming placement series la python laiyum code panuga plz......explanation lam bangam

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

      bro code lam endha language nu kavala padadheenga explanation ah apdiye translate panna porom code la avlo dhan. I will try to include python if possible.. but I would suggest watching the entire video and go to leetcode and try to solve in python. this way you will become really good

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

      @@AlgoTamizha ok na 🌝

  • @dilipv.p5097
    @dilipv.p5097 3 ปีที่แล้ว +2

    Ipdi panalamae brother
    Like sliding window concept instead of using maps
    Example
    -4, -1, -1, 0, 1, 2 idhula
    Frst window size 2 vachu adha slide panite pogalam
    [-4, -1], -1, 0, 1, 2 ipo andha frst two add panna -5 varum ippa adutha loop la remaining number la enga +5 iruku pakalam
    Then next iteration
    -4, [-1, -1], 0, 1, 2
    -1-1=-2
    Now we need to find 2 in remaining numbers like 0, 1, 2
    We'll find it and we can add it ro our set
    Then next iteration
    -4, -1, [-1, 0], 1, 2
    -1+0 = -1
    Now we need +1 which is next to 0
    Now we can add -1, 0,1 in our set
    After that -4, -1, -1, [0, 1], 2 we need 1 but there is only 2 remains
    Then -4, -1, -1, 0, [1, 2 ] now there is no numbers left to add as 3rd integer
    And our loop ends
    Idhu crct ah varum la brother?

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

      interesting idea 🙌. aana sliding window pannaumbodhu pakathula ulla numbers matum dhan consider panromla, aana namma tripletla ulla moonu number ume thalli thalli pakathula illama irka chance irku, so idhu ella caselayum work aahadhu. but nice thinking.😊

    • @dilipv.p5097
      @dilipv.p5097 3 ปีที่แล้ว +1

      @@AlgoTamizha adhukundhan frst sort panidron la brother

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

      take -3 -2 -1 0 4. idhula -3-1 4 idhu moonum oru answer. aana edhuvume pakathu pakathula irkadhu

    • @dilipv.p5097
      @dilipv.p5097 3 ปีที่แล้ว +1

      @@AlgoTamizha ohhh ok brother

  • @harishrajaselvan
    @harishrajaselvan 3 หลายเดือนก่อน +2

    Thumbnail🗿

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

    Anna public static void main use Panna venama

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

      leetcode la direct ah namma function matum type panra mari kudupanga, full program eludha theva illa. leetcode la apdiye paste pani run panunga

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

      @@AlgoTamizha epdi bro leetcode eclipse la open Pannurathu

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

      leetcode oru website bro, desc la problem link irku parunga open panni parunga

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

    Bro oru doubt ethuna loop use pannuromo Avlo time complexity increase aguma example 2 loop use panna time complexity O(n^2)

    • @dilipv.p5097
      @dilipv.p5097 3 ปีที่แล้ว +1

      Loop inside loops increase aahurapo
      Time complexity increase aahum

    • @dilipv.p5097
      @dilipv.p5097 3 ปีที่แล้ว +1

      Example
      For() {
      For() {
      For() {
      }
      }
      }
      Idhuku O(n^3) varum
      If I'm not wrong

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

      correct dhan but, loop la evlo vati iterate panromnradhu pakanum, ovvoru looplayum n times irku apdina, n*n*n = n3.

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

    Bro prgm screen knjm maximize panni irukalam bro

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

      thanks for the suggestion bro.. next time pannirren.. sorry for this time 😊

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

    Bro code discription la podalaya?

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

      potachu bro. maranten