Challenging World's Most Selective University with Coding Question!

Поделиться
HTML-код
  • Опубликовано: 28 окт 2022
  • Challenging Stanford Students to code in 5 mins with a problem asked in IIT & MIT exams!!
    Edited by Chaitanya khachane
    📈 Get 2 FREE Stocks in US (valued up to $1400): a.webull.com/i/SinghinUSA
    I use WeBull & RobinHood for stock trading which are legal.
    My Study Abroad channel: / @harnoorsinghofficial
    iPhone Vlogging Gear:-
    📱iPhone 14:
    amzn.to/3Mqn3AL(India)
    amzn.to/3VkIKq9(US)
    📸Sony Camera:
    amzn.to/3EAjKFx
    🎥360 Camera:
    amzn.to/35QU0jg (India)
    amzn.to/2MfDp1q (US)
    Tripod:
    amzn.to/3EAk1be
    🎙Vlogging & Podcast Mic (I use different cable for iPhone & Camera):
    amzn.to/2OzeeZ3 (India)
    amzn.to/2Y02IJo (USA)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Follow me on -
    Instagram - / iharnoor
    Twitter - / iharnoorsingh
    For Doubts Related to Undergrad: / 1234179803434320
    Discord Server: / discord
    E-mail for BUSINESS INQUIRY & HELP- hello@singhinusa.com
    MUSIC CREDITS:
    Music From (Free Trial): www.epidemicsound.com/referra...

Комментарии • 254

  • @Swmdwn.Khakhlary
    @Swmdwn.Khakhlary Год назад +57

    honestly, I really enjoy such content harnoor, please continue doing such type of vids. I really appreciate your effort man

  • @goodhuman1
    @goodhuman1 Год назад +3

    All of these videos are so good, especially at Stanford and with the Meta guy!!

  • @shachisinghal8856
    @shachisinghal8856 Год назад +5

    Keep posting such videos. They are very inspiring.

  • @atmangautham7078
    @atmangautham7078 Год назад +28

    I’m loving this series of asking questions to top College students❤

  • @starboy001
    @starboy001 Год назад +8

    The way SHE told that why she was able to solve the 'leetcode' questions, shows us the harsh reality of being poor. Kudos woman.👍🏿👍🏿

  • @joelmarkjmj
    @joelmarkjmj Год назад +8

    We want this type of content More and More and Most

  • @tebooo_n
    @tebooo_n Год назад +8

    Please make more videos like this 🥹 really enjoy watching them. Very insightful

  • @aanifshabir1554
    @aanifshabir1554 Год назад +58

    14:03 best part 😂

  • @jaycen1856
    @jaycen1856 Год назад +1

    This is just a pure understanding of how binary operations work…. Nothing too technical on algorithm.

  • @AbhishekSingh0216
    @AbhishekSingh0216 Год назад +297

    Their names were Sanjay,Sahil & saurav and they were not from India🙃.even foreigners give Indians name to their children.

    • @sxmeersharma
      @sxmeersharma Год назад +205

      They are from Indian origin not Indian their parents are probably 2nd Gen Immigrants

    • @mrkiba1781
      @mrkiba1781 Год назад +19

      @@sxmeersharma Sahil from Bangladesh

    • @sxmeersharma
      @sxmeersharma Год назад +22

      @@mrkiba1781 it’s a common name in both countries he could be even Pakistani

    • @arnavD007
      @arnavD007 Год назад +2

      I guess they are OCI's

    • @mrkiba1781
      @mrkiba1781 Год назад +6

      @@sxmeersharma he is my relative, don't claim anyone Indian origin

  • @mohitmishra3091
    @mohitmishra3091 Год назад +4

    bhai indians hi indians dikh rahe sab jagh..hahah..its like u r in dilli sarijini nagar..so happy seeing indian roots at all places !!

  • @mrd6840
    @mrd6840 Год назад +3

    Hey bro I need more videos like mit students solving iit question paper and iit students as same as mit question paper. Need from you

  • @theprofessor8844
    @theprofessor8844 Год назад +260

    Good to see people appreciating difficulty at IITs ....

    • @rohanIVY
      @rohanIVY Год назад +43

      Tho tu kyu khush ho raha

    • @abhijeetsingh4824
      @abhijeetsingh4824 Год назад

      @@rohanIVY INKO IIT ME NAUKRI LAGA HAI. JANITOR KA

    • @akashpaul4143
      @akashpaul4143 Год назад +14

      @@rohanIVY dikhai nahi deta woh professor hai !!🙂🥲

    • @theprofessor8844
      @theprofessor8844 Год назад +5

      @@rohanIVY Because I was at one point involved in studying for these institutes. I understand how hard it is to get in.

    • @hippityhoppity3964
      @hippityhoppity3964 Год назад +8

      @@akashpaul4143 Bhai phir toh muje kal paaka asli Willi smith ne comments meh gaali di

  • @Asherstitusworld
    @Asherstitusworld Год назад +3

    Super video Bro Nice Intro

  • @mrd6840
    @mrd6840 Год назад +2

    I need this kind of videos more ...

  • @rahuliitbhu3111
    @rahuliitbhu3111 Год назад +1

    good job , keep it up.

  • @mohitchoudhary3668
    @mohitchoudhary3668 Год назад +17

    Honestly i enjoy the series It's great to know the foreign students how they study in college and what apporch they think 💬. And sir one request is there , can you make a video for Bca students . How they can start to do coding and after doing bca they should do masters for multinational companies . And for multinational companies only coding is important or any more thing we have to study. Because we are learning basic things of coding . And one more thing i am noob in coding so how can i start coding can you explain in video or reply here . And for coding you can prefer any book .

  • @yash9725
    @yash9725 13 дней назад

    # One of the better ways to find if the number is a power of 2:-
    #include
    using namespace std;
    bool f(int n)
    {
    if(n == 0)
    {
    return false;
    }
    int count = 0;
    while((n & 1) == 0) // when the lsb is set the loop stops.
    {
    count++;
    n >>= 1;
    }
    if(n == 1)
    {
    return true;
    }
    return false;
    }
    int main()
    {
    int n = 16;
    cout

  • @raghavchhabra5951
    @raghavchhabra5951 Год назад +41

    Everytime I watch his video, I start doing leetcode for a week and then stop. 😂

    • @rohanIVY
      @rohanIVY Год назад

      Relatable😂

    • @boy0607boy
      @boy0607boy Год назад

      @@rohanIVYhow do you decide on the list of problems?

    • @redhair1401
      @redhair1401 Год назад +1

      @@boy0607boy no. Of likes on the problem

    • @dokyungsoo8623
      @dokyungsoo8623 Год назад

      Me tooo

    • @dark_techyy
      @dark_techyy 4 месяца назад

      Let me take your mock interview if you are still alive!😊😂

  • @ItxLittleHappiness
    @ItxLittleHappiness 27 дней назад +1

    6:54 if a number can be written as a power of 2 then it means that it is divisible by 2 ...so I think so we can do it by simply testing as we test an even number 🥇 or not ??

  • @THE_GFI
    @THE_GFI 10 месяцев назад

    This is good content bro but please post the selected question or any question to solve for the viewers ✌

  • @HungryWTF
    @HungryWTF Год назад +28

    bro that string question is cake walk level 😂

  • @vision_lc
    @vision_lc Год назад +26

    He never stop to motivate people 🥺

  • @muditkhanna8164
    @muditkhanna8164 Год назад +2

    the solution you just gave for was very creative for checking the power of the two , but after that the more simple answer would've been just checking the LSB of that binary number

  • @MLRTrytonix13
    @MLRTrytonix13 Год назад +12

    For the second problem I'm actually surprised the first guy didn't have a clue of the most efficient way. I'm a CS Junior and one of my first class last semester was about assembly. It helped me so much with the understanding of problems like these.

    • @eduardocod8924
      @eduardocod8924 Год назад +11

      Yeah but after 3 months you’ll forget it 😂

  • @Rahul62635
    @Rahul62635 Год назад +5

    Stanford Universities not all students r as briliant as iitians
    As 40-50% goes to iit due to their social activities in international level

  • @sankalpvats4658
    @sankalpvats4658 Год назад

    Amazing content❣️❣️I also wanna be like you

  • @Piggynmoo
    @Piggynmoo Год назад +3

    My son is doing CS from UTS in sydney and Its my dream to see him get his masters from MIT.

  • @aritano491
    @aritano491 9 месяцев назад +1

    For the power of 2 one you can just do log(number)/log(2) and if its an int then you know the number has a base of 2. However, I may have also misunderstood the question lol.

  • @masudahmed5196
    @masudahmed5196 Год назад +1

    Wow awesome 👌
    Appreciating for Last girl 👧

  • @indrashispowali
    @indrashispowali Год назад

    Maja e aa gaya vlog dekh ke toh

  • @raghavgujjar
    @raghavgujjar Год назад +19

    The O(1) solution is limited by the address space of the registers in the CPU and ALU. So for very large powers of two, like above 2^64 it may not be as efficient. Depends on how many bits the registers can store. Disclaimer: This is just thought aloud. Might need more verification.

  • @furiousbro4685
    @furiousbro4685 Год назад +8

    This students are quite intellegent .

    • @neon-astronaut
      @neon-astronaut Год назад +2

      Bhai won Stanford hai
      Wahan to honge hi

  • @draviki
    @draviki Год назад

    i like your content Harnoor. Keep visiting the college

  • @shahbazkhalilli8593
    @shahbazkhalilli8593 Год назад

    please share the result such as valid answers of all questions at the end

  • @liontalha7383
    @liontalha7383 Год назад

    And me thinking the optimal solution for power of 2 => (ceil(log2(n)) == floor(log2(n)))

  • @kirtisahani3412
    @kirtisahani3412 Год назад

    I really enjoy it 😀😀🙃.

  • @harshvardhannaik1959
    @harshvardhannaik1959 Год назад +1

    Bro my brain 🧠 is hanged after watching match . Any mathematic solution for this?

  • @no-eh4sz
    @no-eh4sz Год назад +2

    MIT admissions process pa ek video banaow bahi

  • @dakshbhatnagar
    @dakshbhatnagar Год назад +1

    I thought MIT < Stanford. Anyways bro you got to get a dedicated mic since the device is picking up sounds of the background as well

    • @mugiwara_
      @mugiwara_ Год назад

      lmao why , MIT is #1

  • @thankyou_guruji
    @thankyou_guruji Год назад +11

    Aryender is doing such an amazing job as Harnoor's new partner! Also giving away 100 or 50 USD to these students who can afford leetcode premium doesn't makes much sense! Why don't you give your Indian subscribers a question who can't afford leetcode premium?

  • @rahbs26
    @rahbs26 Год назад

    GREAT HARNOOR BRO

  • @swarupbehera6806
    @swarupbehera6806 Год назад +4

    x=int(input(enter the no;))
    y=x/2
    if y==x//2 :
    print("is a power of 2")
    maybe the second question cqn be solved like this

    • @Sanyu-Tumusiime
      @Sanyu-Tumusiime Год назад +1

      why bother doing that? just use bitwise to solve it
      public static void main(String[] args){
      int x = [INPUT];
      int ct = 0;
      while(x > 0){
      if(x & 1 == 1){
      ct ++;
      x >>= 1;
      }
      if(ct == 1) System.out.println("is a power of 2");
      else System.otu.println("not a power of 2");
      }
      very easy

    • @swarupbehera6806
      @swarupbehera6806 Год назад

      @@Sanyu-Tumusiime that seems more hard though 😅😅🤣🤣

    • @v.varsha4633
      @v.varsha4633 Год назад

      Hey yours will be wrong as for ex of we take 12 it will return 6 and 12//2 also returns 6 even though they are same we know that 12 is not a power of 2

    • @Sanyu-Tumusiime
      @Sanyu-Tumusiime Год назад

      @@v.varsha4633 you're right. it will be wrong. use my solution

    • @swarupbehera6806
      @swarupbehera6806 Год назад

      @@v.varsha4633 you are absolutely correct ma'am and i agree as now I can see I am purely wrong there btw I started to learn programming 3 months ago so no hardships 😁
      Let's see what this world has to offer for me 😌

  • @jasdeepsinghgrover2470
    @jasdeepsinghgrover2470 Год назад +4

    BTW all these solutions are actually correct... The full adder circuit is itself O(number of bits) so subtracting 1 takes O(number of bits which is same as number of digits)

    • @ziedbrahmi4812
      @ziedbrahmi4812 Год назад

      mm not really , it's more efficient because it's a native thing for the processor.

    • @jasdeepsinghgrover2470
      @jasdeepsinghgrover2470 Год назад

      @@ziedbrahmi4812 but it is still under the assumption that number fits in the circuits

  • @pritikahanda7709
    @pritikahanda7709 Год назад +2

    i learnt whole of this binary system in grade 10th and after joining coaching institute it all went to vein due to extreme pressure of examsss

  • @shauryakansal1081
    @shauryakansal1081 Год назад +1

    thanks for everything!

  • @thelegend5633
    @thelegend5633 Год назад +2

    Please make video on MIT VS STANFORD

    • @mugiwara_
      @mugiwara_ Год назад

      just stupid idea bro

  • @Ayan-who
    @Ayan-who Год назад

    I have seen that purple t-shirt guy with glasses in one of your other video

  • @abhisheksingh402
    @abhisheksingh402 Год назад

    In my college out of 100 almost 99 can't solve these problems. Here almost every one have knowledge

  • @vishalraghav8982
    @vishalraghav8982 Год назад +10

    For 2 to the power n, can’t we just take base 2 log of the number. If we get an integer back. Then it’s true else it’s false. That would also be constant time. Assuming log2 function has constant time.

    • @spiderop2125
      @spiderop2125 Год назад +1

      Where can you get that log function from ? Not every lang is python.

    • @prabhattiwari007
      @prabhattiwari007 Год назад

      @@spiderop2125 exactly...That is what I was thinking

    • @yunik_developer
      @yunik_developer Год назад +2

      Yeah it can be possible in Java and CPP both they have log functions

    • @manfromwuhan714
      @manfromwuhan714 Год назад

      They’re basically asking them to code the log function from scratch. In the most efficient way possible

  • @prodabber0222
    @prodabber0222 Год назад

    imagine how selectvie stanford would be if it was in washington

  • @bigtummy8533
    @bigtummy8533 Год назад

    Can you meet Manu Chauhan? You interviewed him?

  • @lokendrasingh841
    @lokendrasingh841 Год назад

    brother i want to know more about cs engineering so please can you give idea of a good plate-form for coding.

  • @lostgoat
    @lostgoat Год назад

    8:00 return n & (n-1) == 0

  • @forunsecurewebsite156
    @forunsecurewebsite156 Год назад +1

    Question: im bad at math but i want walk in technology path, should i learn math first or codding(Frontend) but i havent decide what i want to focus with is it website or the other.

    • @themanofgod8770
      @themanofgod8770 Год назад

      I suggest sticking to your passion, if you love technology then pursue that, allow everything else to follow suit. I shall give you an example, a strategy game like Yu-Gi-Oh requires a lot of reading, however reading is not a necessity, if one has a passion in Yu-Gi-Oh, they simply need to play the game, memorising the cards they need to know, eventually memorising what words relate to what meaning, after decades of playing Yu-Gi-Oh, do you not think he would have grasped basic reading, enough to play Yu-Gi-Oh effectively? Analogous to you grasping maths, enough to be effective in the path of tech

  • @pradyumnasharmakattel129
    @pradyumnasharmakattel129 Год назад

    harnoor? please tell me,, are you on your OPT right now or what? in what status are you there right now? you had got F1 again in dropbox from delhi,, so you are doing masters?

  • @tripcreator87
    @tripcreator87 11 месяцев назад

    Admission in IIT is much tougher than MIT, People like you who not able to clear JEE moved to US/UK for further degree course.

  • @shayanali7558
    @shayanali7558 Год назад +1

    I would have gone for;
    int a ;
    if (2 modulus a == 2) {cout

  • @sanjaygatne1424
    @sanjaygatne1424 Год назад

    why not popcount(x)==1 to find pow of two.

  • @avocadorable18
    @avocadorable18 Год назад +1

    Video seems to be lagging. Anyways harnoor great content.

  • @kislayanegi1742
    @kislayanegi1742 Год назад +1

    Ayender is genius!!!!

  • @ankurrajbangshi7133
    @ankurrajbangshi7133 Год назад +1

    What is Lewis Hamilton doing in Stanford??🤔

  • @ANNGUYEN-cw7lw
    @ANNGUYEN-cw7lw Год назад +1

    You can visit mission college to contest code in 5 minutes

  • @diganta7
    @diganta7 9 месяцев назад

    Can I know which programming language are they using?

  • @Lol-qy1dy
    @Lol-qy1dy Год назад

    Multiple of 2 question soo easy...

  • @ankitrawat-acodebreaker
    @ankitrawat-acodebreaker Год назад

    shouldnt N & (N-1) be O(log2N) and not O(1)

  • @user-pf7ch6ys9r
    @user-pf7ch6ys9r 3 месяца назад

    i am from pakistan i don`t no what an diffecult level(mean at logically level not craming ) iit take off the test but an incridble change in india education really appricated ....

  • @udproductions5855
    @udproductions5855 Год назад +1

    Mai bba ka student hu pr Mai ek code developer bna cahta hu to kya Mai bn skta hu agr bnta hu to bhi kya mujhe achi job milegi jaise ki btech walo ko milte hai

  • @abhishekshankar1136
    @abhishekshankar1136 Год назад

    the power of 2 soln is brian kernighan algorithm , just fyi

  • @shubhanshukumarsingh6133
    @shubhanshukumarsingh6133 Год назад +3

    14:00 "IIT" be like Raula hai hamra , kabhi kabhi to lgta hai apun hicch bhagwan hai.

    • @mugiwara_
      @mugiwara_ Год назад

      Still not in top 50 in global list where as MIT and Staford are in top 3

  • @yahyaashraf5511
    @yahyaashraf5511 Год назад

    Please visit LAC too

  • @venkateshkumar9289
    @venkateshkumar9289 Год назад +1

    This would work right ?
    base_number = 2
    power_of = int(input("Enter the power of number: "))
    user_calculated_output = int(input("Enter the number to check if the required result is True/ False: "))
    multiply_power = base_number ** power_of
    if multiply_power == user_calculated_output:
    print("True")

    else:
    print("False")

  • @jasminevora852
    @jasminevora852 Год назад +1

    Jalwa hai .

  • @ankurpathak5964
    @ankurpathak5964 Год назад +1

    kuch samjah nehi aya but sunke achaa lagaa :)

  • @yash9725
    @yash9725 13 дней назад

    # Adding 2 Binary Strings:-
    #include
    using namespace std;
    string bin(string &s1,string &s2)
    {
    int i = s1.size() - 1;
    int j = s2.size() - 1;
    int carry = 0;
    string res = "";
    while(i >= 0 || j >= 0 || carry)
    {
    int n1 = (i >= 0) ? s1[i] - '0' : 0;
    int n2 = (j >= 0) ? s2[j] - '0' : 0;
    int sum = n1 + n2 + carry;
    carry = sum / 2;
    res.insert(res.begin(),(sum % 2) + '0');
    i--;
    j--;
    }
    return res;
    }
    int main()
    {
    string s1 = "101";
    string s2 = "0010";
    cout

  • @anantpandey4985
    @anantpandey4985 Год назад

    Bro go for campus tour also

  • @alphaleporis329
    @alphaleporis329 Год назад

    12:00 *That's why I'm at Stanford not MIT*
    As if Stanford is the LPU of USA.

  • @randym1788
    @randym1788 Год назад +1

    What is not clear in the question is if the result is to be in binary format or decimal.
    1100 or 12?

  • @sahilnandal1643
    @sahilnandal1643 Год назад +2

    Can you also show the complete solution of questions???

  • @ansh_rp
    @ansh_rp Год назад +6

    IIT--jalba h hamara 🤣

  • @arnavfx6466
    @arnavfx6466 Год назад

    Good vid

  • @justenjoythejourney2377
    @justenjoythejourney2377 Год назад

    Wait! Harnoor actually Rick Rolled us! That's why I have trust issues...

  • @parthankolikar5864
    @parthankolikar5864 Год назад

    bruh these questions are so easy

  • @ankitclass10th62
    @ankitclass10th62 Год назад +1

    Is everyone knows about iit in stanford

  • @fredericnoa-jy2ui
    @fredericnoa-jy2ui 5 месяцев назад

    For powers of 2 Idk
    bool is_power_of_two(int number) {
    return number > 0 && (number & (number - 1)) == 0;
    }
    Could someone check please 10:31 10:32 10:35

  • @ahmadcheema8389
    @ahmadcheema8389 Год назад

    bhai jan. Full stack web developer kha be scope ha canada ma
    plz reply

  • @IMINTONIRVANA
    @IMINTONIRVANA Год назад +4

    Ivy league kids are literally out of this world

  • @pratikdharanep.d.8938
    @pratikdharanep.d.8938 Год назад +6

    BCA student here ❤️

  • @rashmikadk6796
    @rashmikadk6796 Год назад

    Can you share the links of sources of these problems please 🙏

  • @sandeep8203
    @sandeep8203 Год назад

    Bhai isse software kaise banta hai 😭😭😭

  • @shahbazkhalilli8593
    @shahbazkhalilli8593 Год назад

    x="101"
    y="111"
    list=[]
    def binary(num):
    for index in range(len(num)):
    list.append(index)
    list.reverse()
    return list
    def bin_cal(daxil):
    result=0
    for index, eded in enumerate(daxil):
    eded=int(eded)
    result+=int(eded)*(2**binary(daxil)[index])
    return result
    print(bin_cal(x))

  • @asisbhatrai5608
    @asisbhatrai5608 Год назад +1

    For checking if the number of 2 to the power of some number:
    def check(x):
    m = x/2
    while m > 1:
    m = m/2
    if m == 1:
    return True
    else:
    return False

  • @First533
    @First533 Год назад +6

    Lots of Indian names like Sanjay , sahil etc love to see Indians doing great

    • @xPhilosophyy
      @xPhilosophyy Год назад +6

      Theyre from Indian parents so their descent is indian but their nationality is ig american so i don’t really think we should address them as indians

    • @First533
      @First533 Год назад +1

      @@xPhilosophyy i know that they are American citizen

    • @stevenayare6097
      @stevenayare6097 Год назад +1

      just because someone looks Indian with indian names, does not mean that person is actually an Indian

  • @Dkdcfkfodowpaallagkroeowpwlsl
    @Dkdcfkfodowpaallagkroeowpwlsl 9 месяцев назад

    Why i am feeling so dumb

  • @MusicandChillss
    @MusicandChillss 9 месяцев назад

    IIT Bombay CS students be like bruh that is most basic question u gonna get...

  • @sunny---24
    @sunny---24 Год назад +2

    you go to USA and find Indians there

  • @anshul2000punk
    @anshul2000punk Год назад +1

    Man I just saw this video to make me realize how dumb I am.

  • @avinashgupta4038
    @avinashgupta4038 Год назад +1

    Lagta hai bhai ko bhi startup karne ka hai.

  • @dark_techyy
    @dark_techyy 4 месяца назад

    I have a question for all of you.
    Q1. Given the root of a binary tree where every node contains a natural number, return the maximum path sum from node to leaf.

  • @ShivamMishra-zm3hh
    @ShivamMishra-zm3hh Год назад

    Wedding begins 😃😃 next year