How I cracked Google Interview after 500+ rejections

Поділитися
Вставка
  • Опубліковано 1 чер 2023
  • 1. How to crack coding interviews?
    2. How to prepare for coding interviews?
    3. How to learn Data Structures and Algorithms?
    4. How to use Leetcode effectively?
    5. How to ace Software Engineer interviews?
    I will answer all these questions in this video.
    ► Useful links:
    1. Two sum problem unsorted array: leetcode.com/problems/two-sum...
    2. Two Sum problem sorted array: leetcode.com/problems/two-sum...
    3. Longest Increasing Subsequence: leetcode.com/problems/longest...
    4. Maximum non overlapping bridges: • Maximum Non-Overlappin...
    ► For more content like this, subscribe to our channel: / powercouple26
    ► Follow us on Linkedin:
    / gabag26
    / sarrabounouh
    ► Let's be FRIENDS! / power_couple26
    ► For business inquiries, reach us on: powercouplejourney@gmail.com
    #codinginterview #datastructures #datastructuresandalgorithms #leetcode #dsa
    DISCLAIMER: All opinions shared on this channel are our own and don't express views or opinions of our employers. We only use our experiences and public knowledge to make our content. NO CONFIDENTIAL INFORMATION of our employers is used or shared on this channel. This is not a Professional Coaching channel, it only highlights the public resources that have worked for our careers.
  • Наука та технологія

КОМЕНТАРІ • 105

  • @srijamarripelli3744
    @srijamarripelli3744 Рік тому +63

    The way you look at the problems and approach to the solution is incredible! No wonder why you are at Google...

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

      Thanks 🙏

    • @gteixeira
      @gteixeira 8 місяців тому +1

      I don't think that this is the reason they hired him. Most of the time they never ask those technical questions, they just ask a couple questions unrelated to your field then they end the interview to be never be heard again.

  • @shashankkumar3427
    @shashankkumar3427 Рік тому +16

    What comes to your mind when you see
    1. SHOWER -> SOAP
    2. EAT -> SOAP
    is it over for me

  • @archanamerla837
    @archanamerla837 Місяць тому

    I love this calm voice, I am not looking to apply to google, but came for some tips for graduate interviews, but calm voice just managed to reduce my anxiety a little :)

  • @motivationimpact181
    @motivationimpact181 11 місяців тому +1

    Your approach strategy is amazing and smart Big like

  • @MyCodingDiarie
    @MyCodingDiarie Рік тому +35

    Your passion for programming really shines through your videos. Keep up the great work!

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

      Thanks 🙏

    • @abel6298
      @abel6298 9 місяців тому +3

      Read your bible! (KJV, preferably) ♥‎‎.

  • @mio-her
    @mio-her 4 місяці тому +1

    Had no gray hair doing your first coding interview! hahhahaah love your dry humor! lol.

  • @user-fc3yf9cg9y
    @user-fc3yf9cg9y 10 місяців тому +1

    This makes sense, during interview question at amazon I thought I know this question and explained it in such complicated way with wrong solution. I think interviewer saw my thinking process, instead of exact correct solution and gave me a positive feedback.

  • @vinodkumar-tj5tc
    @vinodkumar-tj5tc Рік тому

    please share your opinion on data engineer and software engineeer and what is the future of both.

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

    please post a video about how to use A.I to build Resumes and portfolio websites

  • @clydeb7713
    @clydeb7713 6 місяців тому +3

    If you can understand him, you'll pass with flying colors!😅

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

    thank you for motivating us sometime i will lose my confident but your videos make me increasing my confident level . how to remember coding , can you give suggestion

  • @ABDULKADIR-wq9ln
    @ABDULKADIR-wq9ln 8 місяців тому +2

    as a result of priming many people's has a specific ] problem that i had and after watching this videos i got a more knowledge about cracking a interesting interview of google🤩🤩🤩🤩

  • @sandeepkumarrayala6738
    @sandeepkumarrayala6738 3 місяці тому

    you deserve more subscribers

  • @SachinPatel-xi9fn
    @SachinPatel-xi9fn Рік тому +8

    Thanks for always sharing motivated and useful content. Lots of new things I had learned from you soo far.
    Hope to see you one day in reality 😊

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

      Thanks Sachin. See you soon!

    • @abel6298
      @abel6298 9 місяців тому +1

      Read your bible! (KJV, preferably) ♥‎‎.

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

    Again excellent motivational self experience based useful video choice of topic is also attractive for the new comers Thanks for sharing

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

    This is such an Insightful video sahil !! :)

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

    Very nice thanks for sharing 👍👍👍

  • @sivakumar.s2559
    @sivakumar.s2559 11 місяців тому +1

    In Google interview we can you python or any language , is there any language restrictions in coding rounds in Maang

  • @anusharajendra389
    @anusharajendra389 7 місяців тому +1

    After sorting x coordinates based on south side, 50,44 is wrongly placed right ?

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

    Very unique content to improve thinking, Thank you so much sir for your efforts in making these videos
    Could you please tell or make a vidoe on list of books to improve thinking ability or/and problem solving skills.Thank you sir

  • @Enzoerb
    @Enzoerb 4 дні тому

    Problem 2:50
    I would get the first and last element on the list and sum them.
    If the value is higher than expected I would sum the first and the second last
    If the value is lower than expected I would sum the second ant the last
    and continue that until finding a solution, something like that:
    def two_sum(array, target):
    first = 0
    last = len(array)-1
    sum = None
    result = None
    while result == None and last > first:
    sum = array[first] + array[last]
    if sum == target:
    result = (first, last)
    elif sum > target:
    last -= 1
    else:
    first += 1
    return result

  • @spiffylogic
    @spiffylogic 10 місяців тому +6

    Ask questions.
    Look for patterns in test cases.
    Listen to interviewer feedback.
    Listen to music before the interview.

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

      Do interviewers ever give any feedback? Most of the time they just disappear after the interview.

  • @jatin6578
    @jatin6578 9 місяців тому

    music before interview is a great tip for sure

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

    Make a video on chatgpt and its impact on software engineer. Will the coading job will be reduced in future

  • @AmirGolmoradi
    @AmirGolmoradi 8 місяців тому +1

    Hey Sahil
    I'm Amir, A Flutter developer from Iran, and I've always followed your content on social media with great interest.
    As someone with aspirations to join leading companies like Google and Facebook , I'd greatly appreciate your insights. Could you suggest any programming Language or resources or anything that could help me on my path ??
    Your guidance would mean a lot.
    Thank you!

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

    Bro please post a video for how to understand the leet code problem i read the question more than 3 times but i didn't understand what they asked...i lost my patience open the editorial then i realised that problem was already solved some similar topics...most of the time i failed to understand than concepts which this is?

  • @DSEC_SiddhantMohanta
    @DSEC_SiddhantMohanta 11 місяців тому +1

    your way of humour 💯

  • @yadavdta
    @yadavdta 2 місяці тому +1

    It has been five months since my son aced three interviews with Google! 🌐👨‍💼 Despite the suspense, we're maintaining a positive and hopeful outlook. Just last week, he received an email from Google requesting his legal name and valid ID. What comes next in the process with Google, and should we continue to stay optimistic or prepare for a wait?

  • @vamshisundupalle6141
    @vamshisundupalle6141 Рік тому +2

    Can u solve leetcode problems ,so we'll learn approaching

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

    Thanks for explaining ❤❤

  • @TheDailyDose2910
    @TheDailyDose2910 29 днів тому +1

    Can you make a vedio on google apprenticeships please? And when the applications are open for this year please?

  • @nhfx2261
    @nhfx2261 11 місяців тому +1

    Sir, many many request to you that please make a Internship course so that we can grow up with you directly..... You make people to think, that's really an amazing way to teach. I Loved it 😍

    • @abel6298
      @abel6298 9 місяців тому +1

      Read your bible! (KJV, preferably) ♥‎‎.

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

    Awesome ❤❤❤ always power couple ✊

  • @arunimachakraborty1175
    @arunimachakraborty1175 Місяць тому

    Thank You!

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

    Hello brother.
    I am a 1st year btech cs student(course duration - 3years).Along with my study,i am doing a course on full stack development (2year =
    per day 45 minutes).I came to know DSA is very important .I want to learn DSA.should i start learning it now (along with full stack develppment) or should I wait for some more time?

    • @ko-cp9ej
      @ko-cp9ej 9 місяців тому +1

      Start learning DSA along with webstack

  • @Code_JAVA268
    @Code_JAVA268 3 дні тому

    Guy speaks like AI robot jokes apart you are an inspiration

  • @Gjffyhvgjvdy
    @Gjffyhvgjvdy 7 місяців тому

    After submitted the application how many days they take from me to forward my application to the next step

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

    Fantastic video! I love your channel! But…. you may have a copy/paste error in your Description, was looking for the link to the solution but I think these are the links from another video? Could you share the solution?

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

      Hi Kebarius! Apologies for missing the links. I have added them now. Thanks for bringing it to my notice.

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

      @@sahilandsarra 🙏🙇‍♂️🙌

  • @Dunith_Munasinghe
    @Dunith_Munasinghe Рік тому +2

    Thank you ❤

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

    As I am from a tier 3 college it's difficult to connect with quality people and find a good mentor ,Is there any way out?

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

      There should be plenty of job fairs on campus you can try those

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

    but sahil what will be coders good for if ai and ai powered tools like chat gpt take away the jobs of proogrammers and coders

  • @MehmetDemir-xi3yy
    @MehmetDemir-xi3yy 4 місяці тому +1

    Isnt there a mistake at 6.00 you sort the values but second one is 44. It should be 3, 7, 15 .... 40,44,57 etc

    • @KaLu-dj7uy
      @KaLu-dj7uy 3 місяці тому

      That's exactly what i was thinking, thought maybe i missed something

  • @gteixeira
    @gteixeira 8 місяців тому +1

    Don't listen to this guy, tech companies rarely ever ask coding questions. I've interviewed with many tech companies and the interviews are usually very short and only about your past. They are rarely interested in your coding skills.

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

      🤫Me who watching his video after failing ds round as the first round

  • @christianbrown76
    @christianbrown76 2 місяці тому

    Hey great talk. Ur solved it skipped to answer Yea 7 I even drew it out to make sure I wasn’t over thinking it. 😂 that’s how smart people over think 😉

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

    Bro make a video on how to get job sing LinkedIn

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

    Can we use two pointer approach
    S = 0 and e = n-1;
    Run loop while s

  • @sumana4773
    @sumana4773 Рік тому +2

    Yes sleep works it's happened to me😊

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

    Love you sir from kabul Afghanistan

  • @______JeganJ
    @______JeganJ 10 місяців тому

    Sir i sware that i seen this interval problem yesterday and i struggled

  • @asktostranger8296
    @asktostranger8296 9 місяців тому

    Can you please suggest which
    Programming language is best for dsa interviews

    • @coderprakash
      @coderprakash 9 місяців тому

      Python is best because it's syntax is very small compared to Java and c++

  • @ranjithprofessional3399
    @ranjithprofessional3399 Рік тому +2

    please give us atleast one video a week , i daily keep checking videos from your channel bro

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

      I am working on it. I have posted a video for last 5 weeks. 👍

  • @ankitmandal-wq7lh
    @ankitmandal-wq7lh 2 місяці тому

    in the question there is an underscore

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

    i failed my interview today , i think it was similar to the previous problem but it wasn't

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

      We have all failed interviews at some point. Stay strong and keep going 👍

  • @JesusChristoph-xo9ov
    @JesusChristoph-xo9ov 3 місяці тому

    You can't memorize something you've never looked at. I call that a win 🤣😅

  • @robertlee1176
    @robertlee1176 7 місяців тому +1

    Punjabi gangsta rap 🎉

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

    ❤❤❤❤

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

    Sir we need your opinion about AI it can solve hard question easily so it can replace employees in fanng also?

  • @aviadshalom66
    @aviadshalom66 2 місяці тому

    very good video BUT [50,44] man...

  • @Errormakesmarter
    @Errormakesmarter 4 місяці тому +15

    You talk like Ai

  • @ghusandgamin
    @ghusandgamin 4 місяці тому +1

    A, SOAP

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

    U are iitian graduate

  • @ayushman_sr
    @ayushman_sr 7 місяців тому

    why you have voice of meditation coach

  • @rockingchannel874
    @rockingchannel874 11 місяців тому

    Confused bro, didn't understand

  • @Jdbdjdbdkdbdjjd
    @Jdbdjdbdkdbdjjd 5 днів тому

    dont listen music

  • @shantanushekharsjunerft9783
    @shantanushekharsjunerft9783 Місяць тому +1

    Punjabi gangster rap 😂

  • @ajay7665
    @ajay7665 5 місяців тому

    3:05

  • @roshangeorge97
    @roshangeorge97 9 місяців тому

    SOAP

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

    soap

  • @techboi9631
    @techboi9631 Місяць тому

    Bro speaking like grils voice tone can't able to watch complete video

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

    U

  • @abel6298
    @abel6298 9 місяців тому +1

    Read your bible! (KJV, preferably) ♥‎‎.

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

    2 pointers

  • @SumitParakh1991
    @SumitParakh1991 4 місяці тому

    500+ rejections? Really?

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

    Hi i want some guidance sahil sir can we talk on insta please?

  • @anjigolla4853
    @anjigolla4853 5 місяців тому

    SOAP

  • @mbahemmanuel753
    @mbahemmanuel753 6 днів тому

    soap