MINIMUM WINDOW SUBSTRING | LEETCODE # 76 | PYTHON SOLUTION

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

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

  • @dnm9931
    @dnm9931 8 หลายเดือนก่อน +3

    I go on TH-cam and see a Leetcode question done by you that I am trying to solve and it gives me joy. Thank you for existing. You probably see me in all your videos but you’re really amazing and please keep it up!

    • @crackfaang
      @crackfaang  8 หลายเดือนก่อน +1

      No problem man, thanks for continuing to watch the channel

  • @3rd_iimpact
    @3rd_iimpact 8 หลายเดือนก่อน

    Great explanation! Was definitely struggling to grasp this one on my own.

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

      It's a fun question, definitely enjoyed this one. Maybe I'm just strange

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

    Great solution. This question isnt super hard but more difficult to implement

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

    Made a minor change in line 20, I wrote the code in C++
    so had to write if(mp2.find(s[r])!=mp2.end() && mp2[s[r]]>=mp1[s[r]]), then everything works fine

  • @YT.Nikolay
    @YT.Nikolay 2 ปีที่แล้ว

    I had this question, the first time had to watch the explanation, and the second time did not optimally but myself, still had to watch the optimal one, now I put this problem into my backlog! I am going to solve it this time! At least, I have hope :D
    What would be your advice? I bet you had such a situation, what is the most productive way to get along with it?

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

    Thank you!

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

    As usual thanks for the awesome explanation. I had a small glitch when i submitted it. It failed for test case "bbaa", "aba" . I had a add a small change to line 20. if cur_char in t_counts and (window_counts[cur_char] == t_counts[cur_char] or (
    window_counts[cur_char] > 0 and window_counts[cur_char] < t_counts[cur_char])):
    matches += 1

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

      I didn't have to change anything, it should work as is

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

      @HarishRaoS good catch. I also had to make this minor change.

  • @sharathkumar8338
    @sharathkumar8338 2 ปีที่แล้ว

    Even sliding window is important topic. Last time I could not clear the interview because I didn't solve any heap, sliding window, stack and hashMap. Could you solve more problems in these from leetcode ? please ???🥺🥺