Bitwise AND of Numbers Range - Leetcode 201 - Python

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

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

  • @yang5843
    @yang5843 9 หลายเดือนก่อน +14

    Appreciate you for making this video, despite how difficult it is to explain the topic.

  • @yang5843
    @yang5843 9 หลายเดือนก่อน +8

    The 2nd solution is so simple once you understand the bit manipulation!

  • @deepmondal8459
    @deepmondal8459 9 หลายเดือนก่อน +1

    7:01
    class Solution:
    def rangeBitwiseAnd(self, left: int, right: int) -> int:
    res = 0
    for i in range(32): # Iterate over each bit position
    if (left >> i) & 1 and (right >> i) & 1: # Check if the i-th bit is set in both left and right
    mask = (1

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

    I feel this video is an exception to your usual easy to understand explanations. I think it would be more concise to explain that the left and right most number would have a common prefix. The problem reduces to finding that common prefix (if any) between the left and right numbers of length 32 (and put zeros to the remaining positions), giving O(1) time complexity.

  • @logchamption
    @logchamption 9 หลายเดือนก่อน +1

    class Solution:
    def rangeBitwiseAnd(self, left: int, right: int) -> int: while left < right: right &= right - 1 return right

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

      Did the same thing

  • @BlunderArmour
    @BlunderArmour 9 หลายเดือนก่อน +1

    Neato. The intuition here is God tier.

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

    My man If I ever Get into an MNC You will be the reason for it HATS OFF!!

  • @alphaferret1220
    @alphaferret1220 9 หลายเดือนก่อน +5

    hello everyone doing problem of the day

  • @shepmax555
    @shepmax555 วันที่ผ่านมา

    I was expecting to see the 2nd solution 1st. It makes much more sense than the 1st one.

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

    Thanks for great solution! After I saw your answer, I immediately understood the problem.

  • @udaygodaba6860
    @udaygodaba6860 9 หลายเดือนก่อน +1

    Simply Wow! what an approach

  • @Pegasus02Kr
    @Pegasus02Kr 9 หลายเดือนก่อน +1

    I think the second solution is a million times more intuitive and easier to reason about

  • @ninjaasmoke
    @ninjaasmoke 9 หลายเดือนก่อน +1

    class Solution {
    public:
    int rangeBitwiseAnd(int left, int right) {
    int c=0;
    while (left!=right) {
    left = left>>1;
    right = right>>1;
    ++c;
    }
    return left

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

    The way i approached it was different. I realized that in order for it to have an non 0 solution, the the number of digits in the binary rep should be equal, since otherwise in order to gain an extra digit, there must be a power of 2 within the range, which obviously makes the entire thing 0. I used log2 of both of them numbers to check the digits, and then i statted at that bit and found the prefix that is common... And then returned the answer.

  • @erminiottone
    @erminiottone 9 หลายเดือนก่อน +1

    The second solution is MUCH simpler than the first one

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

    The 2nd solution was brilliant!

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

    Thank you very much.

  • @m.kamalali
    @m.kamalali 9 หลายเดือนก่อน

    The second approach is awesome

  • @nicolasguillenc
    @nicolasguillenc 9 หลายเดือนก่อน +1

    I will save this video for a time I feel smart enough to understand it 😂

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

      the explanation isnt good enough

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

    tnx for explaination that was perfect

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

    great explanation, loved it

  • @akshayavenkatesan2912
    @akshayavenkatesan2912 9 หลายเดือนก่อน +1

    how is the time complexity log(n) ? Can someone please explain ?

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

    When is the more detailed version of the roadmap coming out? Just watched your video of saying you might do it, any updates?

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

    I would argue this is a constant time algorithm, since all integers has 32 bits and this value is a constant.
    public int rangeBitwiseAnd(int left, int right) {
    int diff = right - left + 1;
    int digits = (int)Math.ceil((Math.log(diff)/Math.log(2)));
    int val = (0x7FFFFFFF

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

    That was really really clever

  • @gauravsharma-lu4if
    @gauravsharma-lu4if 9 หลายเดือนก่อน

    thank you sooo much

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

    thanks for the video. what's your pen tablet? waccom? thanks

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

    Damn finally i can breath easily this problem is tough for me tks neet for trying to explain

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

    I tried O(n) method but it doesn't work. I found similar way of doing the 2nd method in the video. Obviously the method discussed in the video is the ask but I can't figure out in terms of bit operations. I know its not good but here is my solution.
    bin_left,bin_right = bin(left)[2:],bin(right)[2:]
    if len(bin_right) > len(bin_left):
    return 0
    def recursion(str1,str2):
    if str1:
    if str1[0] == str2[0]:
    return str1[0]+recursion(str1[1:],str2[1:])
    else:
    return "0"*len(str1)
    else:
    return ""
    return int(recursion(bin_left,bin_right),2)

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

    Please create playlist for Grind series of problems.

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

    Please let me know if I'm wrong, but the result will be the most significant bit or 0; its complexity could be reduced to O(1) just by doing AND on the most significant bit of a bigger number and filling the rest with zeroes. Am I right?

    • @sophiophile
      @sophiophile 9 หลายเดือนก่อน +1

      There is the edge case where both numbers in the range are the same.

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

      @@sophiophile good point, but adding selection does not change complexity O(1), you could say O(2) as there will be only two cases checked.

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

      @@2EOGIY In Big O notation, you never say O(2), no matter the number of operations, as long as the number doesn't scale with input size, you say O(1) or 'constant time'.
      I get the point you are conveying of course, and you might be aware of what I said. But I thought I'd mention in just in case, because saying something like O(2) in a code interview would be seen as a red flag.

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

      @@sophiophile Thank you for pointing it out. Otherwise, I would died stupid. After research, I found: Big O - Upper Bound, Big Omega (Ω) - Lower Bound, Big Theta (Θ) - Tight Bound. So complexity can be described here as O(2), Ω(1), Θ(1)

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

    the second case is much much easier and logical

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

    You are the goat

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

    Cant this be done in constant time by XORing left and right to get the differing bits and just cutting them out?

  • @spsc07
    @spsc07 9 หลายเดือนก่อน +1

    uhm just a random observation
    all the outputs will be in the form of 2^x, idk how to properly write it

    • @NeetCodeIO
      @NeetCodeIO  9 หลายเดือนก่อน +1

      I think the result will be a summation of 2^x, but not necessarily 2^x

    • @bleh-hc9mw
      @bleh-hc9mw 9 หลายเดือนก่อน

      Can you explain this more? I am not understanding why the solution isn't just 2^(right-left) @@NeetCodeIO

    • @bleh-hc9mw
      @bleh-hc9mw 9 หลายเดือนก่อน

      If its less than 32 --- or else its 0 ?

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

      yeah summation of 2^x, thats the pattern@@NeetCodeIO

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

    Can you explain the %?

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

    well last one was intuitive

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

    maybe would have been better to start the video with the first approach since easier to understand

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

    Lol, my initial O(n) solution looked for biggest power of 2 within range and iterate from there

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

    wow

  • @user-fw4kz3bb4g
    @user-fw4kz3bb4g 9 หลายเดือนก่อน

    Disliked the video after you explained the first solution. Then liked after seeing the last solution😂

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

    The prefix solution feels more intuitive to my monkey brain. We just look for where the leftmost binaries become equal

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

    couldnt understand much

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

    I hate bitwise

  • @rick-kv1gl
    @rick-kv1gl 9 หลายเดือนก่อน

    jesus christ.

  • @MO-6352
    @MO-6352 9 หลายเดือนก่อน

    My brain to me: GET A LIFE

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

    wow