Longest Substring Without Repeating Characters Leetcode | Sliding window algorithm | Python Telugu

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

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

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

    NICE SUPER EXCELLENT MOTIVATED

  • @python-developer521
    @python-developer521 4 หลายเดือนก่อน

    what is the use of set1.remove(s[l]) ? set wont allow duplicates right

    • @techwithsaketh
      @techwithsaketh  4 หลายเดือนก่อน +1

      we are not removing s[r] we are trying to remove all characters in the window till we remove s[r].By doing that we can create a new window and start checking the longest substring.