Search in Rotated Sorted Array II - Leetcode 81 - Python

Поділитися
Вставка
  • Опубліковано 11 жов 2024

КОМЕНТАРІ • 33

  • @aadil4236
    @aadil4236 Рік тому +13

    I feel much safer doing daily leetcode challenges by your return. Thank you! Suggestion: We would love to see explanations of weekly contest as well. After it ends of course.

  • @SASA_maxillo
    @SASA_maxillo Рік тому +4

    POV: *you are struggling on a leetcode problem*
    then you found neetcode have solve it
    the BEST feeling ever

  • @polycrylate
    @polycrylate Рік тому +3

    A small improvement:
    If nums[l] == nums[m] and nums[l] != nums[r]
    It's guaranteed that the pivot is right of middle i.e. you are on the higher/right part of array
    Because if the pivot is on the left of middle, it means that middle -> right must all be the same number that loops back to the left, however as middle != right (as left != right and left == middle) this isn't the case
    So only l += 1 in the case of nums[m] == nums[l] and nums[l] == nums[r], and extend the other case to be

    • @sumitraj6878
      @sumitraj6878 8 місяців тому

      in the case of nums[m] == nums[l] and nums[l] == nums[r] why only l++, do e- - as well. more efficient.. eliminate the same start and end elements because they aint our target. this will help shorten up the search space.

  • @metarus208
    @metarus208 Рік тому +1

    glad to having you post regularly again.

  • @carsonfreeman6955
    @carsonfreeman6955 Рік тому +5

    These explanations are amazing!

  • @rhugvedbhojane4387
    @rhugvedbhojane4387 Рік тому

    Good to see you back buddy.

  • @anuragnandan6155
    @anuragnandan6155 8 днів тому

    In your explanation of [2,2,2,2,3,1], if nums[l] == nums[m] wouldn’t that mean everything between l and m is equal and since our target was not at nums[m], instead of l+=1 we can do l=m+1 ? Am I missing something?

  • @josepadilla4024
    @josepadilla4024 7 місяців тому +2

    He sounded so mad at this problem haha

  • @Scarsofevil
    @Scarsofevil 5 місяців тому +1

    If this problem worstcase senario is o(n). Can't we just integrate through the array and return True in the worstcase scenario?

  • @flp508
    @flp508 16 днів тому

    You are a great teacher. I only watched your explanation once and managed to code it all by myself in the first try.

  • @michelle_tsai_drums
    @michelle_tsai_drums Рік тому

    Thorough explanation as always!

  • @panmacabre9895
    @panmacabre9895 Рік тому +12

    thank you daddy

  • @uptwist2260
    @uptwist2260 Рік тому

    Thanks for the daily

  • @MP-ny3ep
    @MP-ny3ep Рік тому

    Great explanation as always . Thank you

  • @ievgen6209
    @ievgen6209 6 місяців тому

    imo, a little bit overcomplicated... the only case we need to handle in N time - skip duplicates if nums[0] == nums[-1] otherwise it is original solution:
    l = 0
    while l < (len(nums) - 1) and nums[l] == nums[-1]:
    l += 1
    # Code for Search in Rotated Sorted Array I problem
    Beats 86.73% of users with Python3
    right or I'm missing something?

    • @MrLeyt1125
      @MrLeyt1125 6 місяців тому

      Why not move both left and right pointers?

  • @lesterdelacruz5088
    @lesterdelacruz5088 6 місяців тому

    Not the best problem. Because eliminating left pointer 1 by 1 in the worst case would still be O(n) so it doesn't improve anything if you simply just linearly search.

  • @floatingpoint7629
    @floatingpoint7629 Рік тому +1

    the question mentions to decrease the overall operation steps. how does this algo do that?

    • @polycrylate
      @polycrylate Рік тому

      It doesn't force a linear search, it always tries to do a binary until it's stuck and removes elements 1 by 1 until it can again
      What they meant by that line I think is even tho worst case is O(n) they wanted a better AVG case

    • @floatingpoint7629
      @floatingpoint7629 Рік тому

      @@polycrylate got it, thanks

  • @peskovdev
    @peskovdev Рік тому

    sometimes you can understand is that left or right portion not only by left & mid pointers, but also by mid & right pointers, so you will omit some linear operations. Here is the code:
    ```
    class Solution:
    def search(self, nums: List[int], target: int) -> bool:
    lp, rp = 0, len(nums) - 1
    while lp nums[rp] or nums[mp] > nums[lp]: # left sorted portion
    if nums[lp]

    • @MrLeyt1125
      @MrLeyt1125 6 місяців тому

      On #equal you should move both lp and rp

  • @flamendless
    @flamendless Рік тому

    Would "target in numbers" in Python work?

    • @NeetCodeIO
      @NeetCodeIO  Рік тому +1

      That is basically a linear scan, it may get accepted but i think it's not the intended solution.

  • @uttamkumarreddygaggenapall2504

    Thank You

  • @SASA_maxillo
    @SASA_maxillo Рік тому +1

    why not just doing:
    return target in nums
    EASYYYYYYYYY

  • @aaditya_87
    @aaditya_87 6 місяців тому

    2:08 which day? which problem

  • @aniruddhachaki7165
    @aniruddhachaki7165 Рік тому

    Wouldn't it be easier if we just sort the input first and then apply traditional Binary Search? in this problem, we don't need the target's index anyway. It works in this case where we just need to enter true or false.

    • @panmacabre9895
      @panmacabre9895 Рік тому +6

      sorting would take O(nlogn)

    • @aniruddhachaki7165
      @aniruddhachaki7165 Рік тому

      @@panmacabre9895 Yeah. That might be the issue. So, the above solution is the best, if we have to return index, we can with just do a small change

  • @sumitsharma6738
    @sumitsharma6738 Рік тому +1

    the only catch in this problem is when you don't know which part is sorted so you just compare mid value with s and e and if (s and mid) are equal then s++ or if (mid or e) are equal then e--

  • @ashokbabug40
    @ashokbabug40 Рік тому

    Worst explanation