MISSING RANGES | LEETCODE 163 | PYTHON SOLUTION

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

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

  • @Emorinken
    @Emorinken 9 ชั่วโมงที่ผ่านมา

    I love your videos and I really appreciate them
    I really hope I get into FAANG, im seriously putting in the work

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

    class Solution:
    def findMissingRanges(self, nums: List[int], lower: int, upper: int) -> List[List[int]]:
    res=[]
    for a in nums + [upper + 1]:
    if a > lower:
    res.append([lower, a - 1])
    lower = a + 1
    return res
    This is the best solution I have seen. Thanks for the video

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

      That's the best I've ever seen! 😁

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

    Do you recommend Facebook tagged sorted by frequency period, or sorted by frequency over the past 'x' months? THanks for the video by the way!

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

    Thanks

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

    Could you please NOT do premium questions. If you do, please let us know the reason - like you are solving meta problem list or something?

    • @liamsism
      @liamsism 20 วันที่ผ่านมา +1

      Go read the title of this channel