Google Coding Interview With A Facebook Software Engineer

Sdílet
Vložit
  • čas přidán 16. 09. 2020
  • In this video, I conduct a mock Google coding interview with a Facebook Software Engineer, SecondThread, who's also a competitive programmer. As a Google Software Engineer, I interviewed dozens of candidates. This is exactly the type of coding interview that you would get at Google, Facebook, or any other big tech company.
    Check out @SecondThread's channel for cool competitive programming content: / @secondthread
    AlgoExpert: www.algoexpert.io/clem
    SystemsExpert: www.systemsexpert.io/clem
    My LinkedIn: / clementmihailescu
    My Instagram: / clement_mihailescu
    My Twitter: / clemmihai
    Prepping for coding interviews or systems design interviews? Practice with hundreds of video explanations of popular interview questions and a full-fledged coding workspace on AlgoExpert - www.algoexpert.io - and use the promo code "clem" for a discount on the platform!
  • Věda a technologie

Komentáře • 1,2K

  • @clem
    @clem  Před 3 lety +178

    So?! Is David an absolute savage at algo problems or what?! Be sure to check out the Q&A interview I did with him here: czcams.com/video/9ki1-xe6XzU/video.html - as well as David’s CZcams channel if you’re into competitive programming: czcams.com/channels/XbCohpE9IoVQUD2Ifg1d1g.html

    • @SecondThread
      @SecondThread Před 3 lety +39

      Thanks for the interesting and fun problem! I really enjoyed the opportunity to work on it!

    • @abhiramianbu5137
      @abhiramianbu5137 Před 3 lety +4

      If somebody does not know this Aho-corasick algorithm, then the time complexity will be O(phoneNumberLength^2) with trie? Is there any better way to do it?

    • @same0533
      @same0533 Před 3 lety +5

      why is the facebook software engineer wearing google's tee??

    • @OG_Scratch
      @OG_Scratch Před 3 lety +2

      @@same0533 That was google code jam competition tees

    • @same0533
      @same0533 Před 3 lety

      @@OG_Scratch oh

  • @sumitroy2006
    @sumitroy2006 Před 3 lety +2896

    23 years of software development experience. I just feel the industry is getting to such a stage that you need 2 skill sets - One skill set for doing the job and one skill set to pass interviews!

    • @jimmyadaro
      @jimmyadaro Před 3 lety +74

      Absolutely yes

    • @MaitraRoy
      @MaitraRoy Před 3 lety +210

      @@jimmyadaro I just feel if it was a more mature industry, these interview processes would be more streamlined. Doctors and lawyers do not go through loops as they have a standard professional accredition. But in this industry as it is so new, you have to prove yourself over and over again. Past experience does not seem to count even if legitimate. The problem is unlike other professions, there is no real way to verify the experience.

    • @omerahmaad
      @omerahmaad Před 3 lety +19

      Sumit you are a wise man and great comment I agree 1000% but add another thing landing on interview

    • @HangNguyen-wu3fs
      @HangNguyen-wu3fs Před 3 lety +19

      before leetcode type of questions, there were whiteboard questions. I'd rather do LC type of questions than whiteboard questions.

    • @abhi-shekb
      @abhi-shekb Před 2 lety +17

      that's true. An argument in favor of these interviews that I've heard is that big tech companies want to hire candidates who are so strong willed about joining the company that they will put in all the effort required for clearing these interviews.

  • @software_development
    @software_development Před 3 lety +1379

    dude be bussin out random algorithms that even the interviewer doesn’t know out here like “lemme use the ahoshinjinjutsu”

  • @snozzd
    @snozzd Před 3 lety +2348

    These are cool but it'd really help my ego if you hosted a mock coding interview with a candidate struggling to remember how binary search works.

    • @Dreadheadezz
      @Dreadheadezz Před 3 lety +117

      Nah deadass bro I'm right with you 😂😂😂😂😂😂😂😂😂

    • @sanchit537
      @sanchit537 Před 3 lety +7

      Hahahahaha

    • @Rugg-qk4pl
      @Rugg-qk4pl Před 3 lety +126

      Actually tho seeing someone struggle a lot with an interview would be interesting but I don't think the brutal internet would be very nice about it

    • @mastaharashibu7092
      @mastaharashibu7092 Před 3 lety +2

      YES that's a great idea

    • @siliev333
      @siliev333 Před 3 lety +17

      Better yet a candidate that doesn't know what binary search is.

  • @somiltyagi7127
    @somiltyagi7127 Před 3 lety +934

    we can scare our interviewer by saying different algo names

    • @lolerskates876
      @lolerskates876 Před 3 lety +87

      The Corbomite Maneuver Algorithm gives O( log(log(n)) time. Runs quick for even international phone numbers

    • @paraggupta2638
      @paraggupta2638 Před 3 lety +23

      @@lolerskates876 ok lets go with that

    • @RoshanPradhan2
      @RoshanPradhan2 Před 3 lety +4

      @@lolerskates876Can you give me a link to that algo??

    • @dev-skills
      @dev-skills Před 3 lety +19

      I found throwing out these jargons and technicals terms on interviewers face very effective in impressing the interviewer.

    • @TechnicalAnkesh
      @TechnicalAnkesh Před 3 lety

      yeah!! LOL

  • @KennyTalksCode
    @KennyTalksCode Před 3 lety +873

    12:45 honestly most impressed with him drawing out the trie in google docs, that's a skill in itself.

    • @kose241
      @kose241 Před 3 lety +30

      The speed was insane 😂

    • @mirsella6204
      @mirsella6204 Před 3 lety +46

      space bar go brrrrrr

    • @varmamahesh9725
      @varmamahesh9725 Před 3 lety +27

      @@mirsella6204 I think it goes like "tuk tuk tuktuktuk tuk"

  • @mariyadimitrova2097
    @mariyadimitrova2097 Před 3 lety +433

    Normal people: watching horror films and yelling at the characters to get out
    Competitive programmers: watching coding interviews and yelling data structures at the interviewees

  • @sagivtamir3102
    @sagivtamir3102 Před 2 lety +23

    The easier solution is:
    1. Reformat the strings to numbers.
    2. Create suffix tree for the main number.
    3. Check for each number if it is in the suffix tree.
    That will take O(numOfStrings*LengthOfNumber) time.
    O(numOfStrings + LengthOfNumber) space.
    This would be much easier..

    • @YASHGUPTA-cg9fh
      @YASHGUPTA-cg9fh Před 10 měsíci

      Yes that's way easier its some sought of rabin Karp

    • @sauravsuri2188
      @sauravsuri2188 Před měsícem

      This problem looks similar to word break problem. Is this correct?

  • @xbmcme9768
    @xbmcme9768 Před 3 lety +150

    For all those that watched this and feel stupid, remember David has spent 6 years coding and mentioned he used to do 40hrs a week with CP for his college years. So don't feel stupid, but do cry at the fact that it might take years to get this good.

    • @azz111full
      @azz111full Před 2 lety +27

      I've been a developer for about 8 years and this video blew my mind 😂 there are levels to this shit

    • @alekseikharchenko7246
      @alekseikharchenko7246 Před 2 lety +15

      @@azz111full definitely agree I have 6 years of commercial experience and feel the question itself is quite ok, but the speed David types the code is absolutely insane and so it is really hard to follow.

    • @disakek5438
      @disakek5438 Před 2 lety +3

      thats why it's way more chilling to watch this when you haven't even started university (Yay I don't have to know all of this already xD)

    • @kyopa9361
      @kyopa9361 Před rokem

      what is CP?

    • @TK-fo5xl
      @TK-fo5xl Před rokem +3

      competitive programming

  • @renjithroy8422
    @renjithroy8422 Před 3 lety +867

    Just learned to declare a variable in Javascript today and then I watched this video! 🥺

    • @KETANRAMTEKE
      @KETANRAMTEKE Před 3 lety +118

      You are on a right path young Jedi.

    • @vpannava
      @vpannava Před 3 lety +15

      I know how you feel.

    • @meliodas4560
      @meliodas4560 Před 3 lety +73

      Don't worry, there's actually nothing particularly complex in this video. There are two primary things that you will learn with experience (assuming you pursue an education in CS or software engineering):
      1. Algorithms (and data structures), how they work, and their runtime efficiency (you'll understand deeply how nodes/trees are useful, how to code your own, and how/when to use existing libraries).
      2. How to think about problems and the structures of code you need to solve them (like building multidimensional arrays or built-in list structures, how to iterate through them, etc.).
      Once you are familiar with a language, like Java, and using different data structures, plus coding your own data structures from scratch, and learning about different ways to get lower runtime, this stuff will flow from your fingertips. Like was mentioned in the video, this is pretty much all covered at the college level in data structures / algorithms courses, which is typically around year 2.
      Cheers

    • @ancarwillis9060
      @ancarwillis9060 Před 3 lety +13

      It’s a never ending process, and you got to really enjoy what you do. Formal education helps though. I completed my BS in Computer Science about a year ago and I’m sure if I had done this interview I would have just bombed it though. I took an algorithms class but frankly all I can recall from it is how to create iterative and recursive algorithms. Never even heard of Aho Corasick. Then again I work in Cyber Security and only really code for fun so my focus hasn’t been on that. Just keep at it I say.

    • @adilimanaliev3008
      @adilimanaliev3008 Před 3 lety

      i swear😢

  • @tiberiusvetus9113
    @tiberiusvetus9113 Před 3 lety +85

    Programming interview tip: disable spell check, auto correct, turn on mono space font

  • @weirdinternet6020
    @weirdinternet6020 Před 3 lety +360

    24:03 that's me in every coding interview

  • @Revelatus
    @Revelatus Před 3 lety +224

    Wow I learned so much, including that I'm never gonna get a job as a programmer :D

    • @johnnycashcow1130
      @johnnycashcow1130 Před 3 lety +56

      Most jobs are not this technical and algorithmic/data structure heavy. Your typical programming interview will probably not even do one of these challenges. Software engineers who have have been in development for many years probably cannot do this without a bit of training. This does not mean that the software engineer is not as good as the competitive programmer. In fact, being able to do these types of competitive programming questions does not even guarantee you to be a good developer. What's most important is your ability to understand and read code. Also, you need to understand what is being used in the industry and be familiar with frameworks. To land a job, what matters is that you understand the concepts and in the interview, what matters more than actually solving the problem, is HOW you solve the problem Break the problem down into little pieces and build upon it and don't forget to be inquisitive. Be disciplined in your studies and I am sure you'll be able to land a job

    • @tnikoli40
      @tnikoli40 Před 3 lety +5

      @@johnnycashcow1130 this is my fear. Next friday i have an interview for a programmer/tester position where i will get 1 python and 1 c++ question. C++ is good cause i did lots of embedded while in college, but havent touched python in years. I know it will be sthing simple like make a function that does sthing easy but am afraid that i am gonna get sthing like this

    • @xrealy5700
      @xrealy5700 Před 3 lety +5

      @@tnikoli40 how it went bro

    • @arphaksad01
      @arphaksad01 Před 3 lety

      Depends on the industry

    • @DeepThinker193
      @DeepThinker193 Před 2 lety +9

      @@tnikoli40 Bet they asked something like jane has apple in her basket and john has oranges in his. Calculate the distance of the sun to the moon and code how to use a rocket to get there.

  • @JacobHuber
    @JacobHuber Před 2 lety +27

    I think whats good to note is not the algorithm he used specifically but the part where he took the time to consider and evaluate different solutions before implementation.

  • @Grr1967
    @Grr1967 Před 3 lety +290

    Wondering if he refers to neighboring node in a graph as "bro" :-)

    • @clem
      @clem  Před 3 lety +38

      🤣

    • @123aniruddhsiddh
      @123aniruddhsiddh Před 3 lety +7

      Kids and bros :D

    • @divvagg5616
      @divvagg5616 Před 3 lety +1

      @@clem hello sir , can you please provide or suggest any source to learn data structures and algorithms from absolute beginner to master level .

  • @kaushaldawra3527
    @kaushaldawra3527 Před 2 lety +17

    that's not just a facebook engineer, that is a competitive coder

  • @user-hl5fw1nw9l
    @user-hl5fw1nw9l Před 3 lety +12

    Ive GOT to see this q&a video bc i am amazed how easily he walked thru all of this.

  • @jacked_asian
    @jacked_asian Před 3 lety +26

    I always like Clement’s devious smirk when he hears that they’re close

  • @viku453
    @viku453 Před 2 lety +16

    I really wish in a real interview the interviewer would have allowed me to leave the hard portion of the implementation of the algorithm blank and to proceed with the rest of the bits and pieces of the program with the method signature intact 😂. You are awesome Clement! This would have made my life so much easier 😊.

  • @qutaibaal-nuaimy1697
    @qutaibaal-nuaimy1697 Před 3 lety +88

    I could be wrong, but after attempting this problem it's clear that you can also solve it (pretty quickly) by converting all of the input words into numbers (using a hashmap) and then checking if those numbers are contained in the phoneNumber input with a simple if "322" in "322245" check (for example). This gives you a space complexity of O(N = Lenght of Array) and time complexity of O(N*M) where M = Length of Word. I like the uploaded solution in this video a lot, but for many new grads and underclassmen looking for jobs who feel intimidated by this, then just know there's an equally valid and much simpler solution to this problem!

    • @iqramunjoreen4312
      @iqramunjoreen4312 Před 2 lety +13

      Thank you for this comment. Really. I was sweating and crying at this video

    • @tonaxysam
      @tonaxysam Před 2 lety +6

      I thought the same thing!
      I guess the "in" check is a bit slow because for it to check if first is on second, it has to go through all the second string untill it finds the coincidence (if there's one). And the method he proposed is usefull in the sense that it uses information gained with previous checks.
      For example, we have "foo" and "foots" and we want to know if either of those are on "footage", if you do the "in" check for Both, the "foo" will be very fast while the "foots" one will take (the length of the word we're searching in) minus (the length of the word "foots"), with the method he proposed, after knowing that the coincidence "foo" appears on the word, we just gotta continue from there to find out that "foot" is in the word but then the coincidence breaks. So we just took two steps by using information gained with previous comparations.
      Is like the "foreach word: If word in theThing" but where you're allowed to use information you gain with each new word, so that makes it a bit faster (and for large enough arrays, way more faster)

    • @obsidian8037
      @obsidian8037 Před 2 lety

      yes.

    • @dionisorules
      @dionisorules Před 2 lety +2

      @@obsidian8037 but he had to build that aho thing which who knows what complexity its has (both time space) to populate all words. He never mentioned that.

    • @MegaJiggaa
      @MegaJiggaa Před 2 lety +3

      @@dionisorules it runs in linear time, just bfs

  • @codeandcurious
    @codeandcurious Před 3 lety +2

    Thank you Clement the video helped in giving an overview of how to communicate our ideas during an interview

  • @zhenniu2451
    @zhenniu2451 Před 2 lety +5

    @clement, I love how you ask questions that's simple enough to solve within the timeframe but will get great signals out of the candidate. This will be testing people on their problem solving skills instead of how well they can prep for an exam.

    • @zhenniu2451
      @zhenniu2451 Před 2 lety +1

      Second thought is that it's pretty cringe following through his interview since my thought process is very much top down compare to David's bottom up. So it's very interesting to see how we have such polarize types of engineers.

  • @andrewyemtsev4993
    @andrewyemtsev4993 Před 3 lety +18

    I think that would be a good idea to giveaway an interview with ex-Googler, but with a medium level question. Would be a dope content. Since I cannot even comprehend what this mastermind is saying

  • @abhaypatil2000
    @abhaypatil2000 Před 3 lety +16

    I have been watching his videos since a long time. I never knew he was in facebook. Congrats secondthread🤗🤗🤗🤗🤗🤗

    • @aj9706
      @aj9706 Před 2 lety

      He is grandmaster. So it is meta

  • @souravsaha1443
    @souravsaha1443 Před 3 lety +33

    Second thread is my idol.. I follow him a lot for competitive programming

  • @NickRusev
    @NickRusev Před 2 lety +12

    I just studied for loops and came across this video. My self-esteem dropped to the ground. 😅

  • @gianclaudiomoresi9650
    @gianclaudiomoresi9650 Před 3 lety +12

    Basically is a normal exercise. The lenght of the phone number is in the praxis fix, so that is possible to simplify the solution. You just convert the words in number, and you build all possible permutations with these numbers. If the combination have a match with the given nbr., you find then word combination.

    • @ayushsrivastava485
      @ayushsrivastava485 Před 25 dny

      #include
      using namespace std;
      // Ques: from a numpad given a number and a vector of string of words, find all the possible words that can be formed from the number
      vector solve(string number, vector &words, unordered_map &numpad)
      {
      vector res;
      for (auto it : words)
      {
      string temp = "";
      for (int i = 0; i < it.length(); i++)
      {
      temp.append(numpad[it[i]]);
      }
      if (number.find(temp) != string ::npos)
      {
      res.push_back(it);
      }
      }
      return res;
      }
      int main()
      {
      unordered_map numpad;
      numpad['b'] = '2';
      numpad['a'] = '2';
      numpad['c'] = '2';
      numpad['d'] = '3';
      numpad['e'] = '3';
      numpad['f'] = '3';
      numpad['g'] = '4';
      numpad['h'] = '4';
      numpad['i'] = '4';
      numpad['j'] = '5';
      numpad['k'] = '5';
      numpad['l'] = '5';
      numpad['m'] = '6';
      numpad['n'] = '6';
      numpad['o'] = '6';
      numpad['p'] = '7';
      numpad['q'] = '7';
      numpad['r'] = '7';
      numpad['s'] = '7';
      numpad['t'] = '8';
      numpad['u'] = '8';
      numpad['v'] = '8';
      numpad['w'] = '9';
      numpad['x'] = '9';
      numpad['y'] = '9';
      numpad['z'] = '9';
      string number = "3662277";
      vector words = {"foo", "bar", "baz", "foobar", "emo", "cap", "car", "cat"};
      vector res = solve(number, words, numpad);
      for (auto it : res)
      {
      cout

  • @SyedAhmed-lv3kh
    @SyedAhmed-lv3kh Před 3 lety +38

    u guys had me at the part where u were explaining how the words correspond to the numbers :D

  • @seanlau8069
    @seanlau8069 Před 3 lety +50

    Now I want to see clem being interviewed XD

  • @elirannissani914
    @elirannissani914 Před 3 lety +15

    You have to do a coding interview with the cherno he is SUPER SMART!!

  • @adabaladurgaprasad7926
    @adabaladurgaprasad7926 Před 3 lety +94

    I regularly watch second threads CZcams channel, but didn't know he was a facebook software engineer till now🔥

    • @chinmaym7479
      @chinmaym7479 Před 3 lety

      Same bruh

    • @prateeksinghal630
      @prateeksinghal630 Před 3 lety +6

      You should have checked his Facebook profile : p

    • @ironyman7015
      @ironyman7015 Před 3 lety +5

      i though he was a student.

    • @alicebobson2868
      @alicebobson2868 Před 3 lety +2

      @@ironyman7015 😂

    • @piyushpatel2347
      @piyushpatel2347 Před 3 lety +1

      I regularly watch SecondThread videos and I knew since long back that he recently started working for FACEBOOK APP and was also a tester for Facebook hackercup

  • @fyiwdt
    @fyiwdt Před 3 lety +1

    That was fun. But in real interview this can be a really dangerous strategy, because interviewer must be ready for such turn of events. And Clément pointed that out, thanks.

  • @alexIVMKD
    @alexIVMKD Před 3 lety +20

    Amazing... Really liked this one. Also, liked seeing some java.

  • @MiketheCoder
    @MiketheCoder Před 3 lety +60

    He's a facebook engineer? I thought he was a competitive programmer student.

  • @_zaverus
    @_zaverus Před 2 lety +9

    For those who want a simple alternative solution I made using JavaScript, not as advanced as the solution in this video, not using any special algorithms (after I heard the question, I decided to attempt it first before continuing the video) but I believe easier to understand, I have added in reply of this comment so that I don't flood this comment section, copy paste into a js file and use node to run it! :)
    If anyone have any comments that can help me improve on my code, do reply! I'm here to learn as well
    Explanations of my code:
    1. I used a lookup table (mapToNumber) because it's efficient and easy to understand, key value pair.
    2. I used multiple functions to try to make the code as clean as possible
    3. I made sure the functions in my code are pure functions (meaning return value is only determined by its input values)
    4. I used split function to determine if word exists, basically, after the split function, the returned string will change if the number string exists in the phone number, by literally using the converted word to number as the delimiter. so, example if foo = '366', the program will find the string 366 in the phone number, and if it exists, it will modify the phone number, and a check will come in to determine if the string has changed.

  • @xs-3
    @xs-3 Před 3 lety +1

    I don't know why but i like the way this guy talks and explains things

  • @quachiecan6644
    @quachiecan6644 Před 3 lety +215

    Could you do one with a “typical” college student in college? Usually these people you interview are 1%er’s if that makes sense and it makes me as a computer scientist on my second year of college super intimidated and inferior.

    • @rousseau327
      @rousseau327 Před 3 lety +79

      But, to put it bluntly, that does nothing but make you feel better about your current situation in your career. Seeing a very competent Software Engineer tackle these problems helps you get a better understanding of how you should approach these interview problems.

    • @1andrew123
      @1andrew123 Před 3 lety +32

      Dont compare yourself to these guys expecting to be this good.. do it to give yourself something to strive for. Accept where you are and keep taking baby steps and before you know it youll be here

    • @Jindujun
      @Jindujun Před 3 lety +16

      Just admire what people are able to do and strive to get better, thats all you need to do. Go your own path and don't chase after those guys.

    • @quachiecan6644
      @quachiecan6644 Před 3 lety +13

      I feel like I might’ve not gotten my point across. I want to have a “typical” college student/person do it so I know how exactly they would go about the interview because I haven’t seen how THEY would go about the problems. Because everyone that has taken these mock interviews already know how to do it (for the most part) and breeze through it like nothing. The closest person we’ve seen to a “typical” interview was Tech with Tim’s.

    • @darksavior1187
      @darksavior1187 Před 3 lety +3

      @@rousseau327 Sure, however, anyone soon to graduate and seek a new position are among the most likely demographic looking at these videos.

  • @vikramc.n.1121
    @vikramc.n.1121 Před 3 lety +10

    Looking smart in this hair style sir. Also thank you for being such an inspiration person and thank you for helping us with your awesome videos

  • @NytronX
    @NytronX Před 3 lety +27

    Pro tip: You can name drop Aho in an interview, but never call the interviewer Aho.

  • @eliasmoreno4672
    @eliasmoreno4672 Před 3 lety

    thes videos are really helpful for interview preps. thank so much!!! pls make more

  • @TheProductofyourmind
    @TheProductofyourmind Před 2 lety

    I don't know anything about coding (but planning to learn about it), so thinking about this problem and then following along with how the candidate approaches it was super interesting to me.

  • @TechnicalAnkesh
    @TechnicalAnkesh Před 3 lety +55

    David is a Great programmer!! he explains everything very nicely

    • @David-uc3cl
      @David-uc3cl Před rokem

      Thanks, wish everyone else would realize this

  • @ryangulati5872
    @ryangulati5872 Před 3 lety +21

    Hey Clement, do you have a front end expert in the works? I would totally buy that!

  • @mexicanmax227
    @mexicanmax227 Před 2 lety +5

    I can see the Facebook engineers adrenaline rush as he solves it, passion!! Reminds me of when clement is presenting in a video, passion!! Social cues like these are always so awesome to notice, Passion!! lol

  • @sar6575
    @sar6575 Před 3 lety +39

    David is an absolute god not only with his quick solutions but his coherent ability to explain things very simply is awesome !!!

    • @warpromo6636
      @warpromo6636 Před 3 lety +2

      i assume ur experienced. why doesn't he just do
      let number = "3662277";
      let phonePad = ["", "abc", "def", "ghi", "jkl", "mno", "pqrs", "tuv", "wxyz"]
      let words = ["foo", "bar", "baz", "foobar", "emo", "cap", "car", "cat"];
      let works = [];
      for(var a=0; a

    • @karankumar89
      @karankumar89 Před 3 lety +5

      @@warpromo6636 because 90% of Google, Facebook, Amazon interviewers are super anal about you giving an optimized solution using tree structures in 30 minutes that excuses without errors. ( they themselves wouldn't be able to do it, the irony). Which is why these interview methods are broken and outdated

    • @cybermanga2916
      @cybermanga2916 Před 2 lety

      That Guy is a Mathematician!

  • @CaptainSchlockler
    @CaptainSchlockler Před 3 lety +26

    Most convoluted approach to solving a problem I have ever seen. XD

  • @slayemin
    @slayemin Před 3 lety +101

    Damn dude, just go with the O(n^2) implementation and hard code the character to number conversion. There's no reason to worry about O(n^2) runtime when n is so small. If your code is simpler and takes less time to write, and isn't performance critical, it's more maintainable and easier to understand.

    • @olokix
      @olokix Před 3 lety +2

      I was thinking about pre-calculating numbers ahead like every common word(s) (there is like 300k words in english), storing them with certain hash/bite-encode (idk how to explain aka shortcut) and then only regular binary search or something as B+ tree, so it would take time in pre-calculating phase but after it it has O(log2) space requirment is worse but it's price that you pay for fast search? I hope it makes sense a little :D

    • @Smoothie128
      @Smoothie128 Před 3 lety +16

      That is why you are not working at Google :D

    • @slayemin
      @slayemin Před 3 lety +72

      @@Smoothie128 Hah, you're right :) I work at facebook instead.

    • @hattapalkan8395
      @hattapalkan8395 Před 3 lety +23

      @@slayemin dude stop you destroyed him

    • @farhanaditya2647
      @farhanaditya2647 Před 3 lety +11

      @@slayemin bruh, that's brutal 😂

  • @XnazxulX
    @XnazxulX Před 3 lety +1

    This is such a good question. I wish i was smart enough to be able to look at something and come up with n number of algos off the top of my head that would be a candidate for it. Love your interviews.

    • @MrRushifyIt
      @MrRushifyIt Před 3 lety +1

      you can be that smart! You just have to surround yourself this sort of content and build up a knowledge base. look at his github repo at 47:49. When he hears about an algorithm, he does some research on it, then tries to implement it himself, then saves it in his collection. Always be curious and willing to try new things, you'd be amazed at what you can accomplish.

  • @coryschallert8915
    @coryschallert8915 Před 2 lety +1

    This is awesome but terrifying at the same time. This "Mock Interview" will lead to much bigger "applications" in the real world.

  • @ZCxMusic
    @ZCxMusic Před 3 lety +33

    I already have a job in programming but watching this still makes me shit my pants.... I'm very far from his level

    • @aj9706
      @aj9706 Před 2 lety +1

      I don't have a job bro I am from india.

    • @cybermanga2916
      @cybermanga2916 Před 2 lety

      @@aj9706 I am laughing at all you people! reading the comments like i know everything! i don't know why LMAO

  • @yayin5929
    @yayin5929 Před 3 lety +27

    How impressive he knows such algorithms, How can he not forget that haha 😂

  • @the0dd1out_on_yt
    @the0dd1out_on_yt Před 3 lety +25

    Instead of doing complex Aho-Corasik, we can do a lil tricky hashing stuff here.
    Suppose N= all the characters in input.
    We will map all the substrings we find from given number of length less or equal to √N to find matching in the strings size less than equal √N and for bigger strings we can manually hash match each with the given number string!
    Complexity: N√N*(some log factor for mapping)

  • @mattconrad
    @mattconrad Před 3 lety +7

    LOL @ Clem's reaction when SecondThread says "Aho-Corasick" for the first time 😂

  • @jaysizmir9432
    @jaysizmir9432 Před 3 lety +4

    his explanations was super clear, amazing !

  • @harispapadopoulos4295
    @harispapadopoulos4295 Před 3 lety +4

    oh man, the excitement I get every time I see the notification that clement uploaded a new video

  • @potter2806
    @potter2806 Před 3 lety +1

    Thanks a lot for this coding interview, Learned a lot from this!

    • @kevinleesmith
      @kevinleesmith Před 3 lety

      Did you learn how NOT to solve problems?
      I solved it in 30 seconds with something far simpler.... (or am i missing something - happy to be proved wrong)
      For each word in words
      If instr(word2number(word), phoneNumber) > 0 then output word
      VBscript implemetation...
      0 then response.write word & ", "
      next
      %>
      Essentially 2 lines of code and 2 loops.
      See it working at https:/pragmatic365.org/google-interview.asp
      The whole idea of software engineering is to write as LESS lines of code as possible, not the most!!!
      But what do I know.
      I've only been coding for 42 years.

    • @JerryO1995
      @JerryO1995 Před 3 lety

      ​@@kevinleesmith well the thing is that they always look for the most efficient solution possible so, unless you're a genius, 30 seconds is not enough for that. Also, they want to see and hear you go through every piece of information that your brain processes, and I'd argue that that's the most important part of the interview for the interviewer. Moreover, your code uses "Instr", which is a builtin function with a complexity that, if you don't take it into consideration, might make your code way less efficient than it could be with a more complicated algorithm such as the one explained in the video. The fact that you've been coding for 42 years (deep respect for that) doesn't mean that you'd do well in a FAANG interview. However, I do believe that these interviews are stupid for 99% of the applicants since most of them are never going to have to think about and code such difficult algorithms for this sort of strange situations.

  • @raheenulhasan
    @raheenulhasan Před 3 lety +23

    The solution I had was-
    1. A Map to store letter, numeric pair. Total keys 26.
    2. Take a word, convert it to numeric equivalent value.
    3. Check if phone number string contains this equivalent value.
    I think this is a simpler approach.

    • @milovanmilovanov2598
      @milovanmilovanov2598 Před 3 lety +2

      well this is not javascript it depends on which language you use. regardless he thinks on the spot and he has very good ability to communicate his thoughts which is the difference why he works at places like google, (in his case, facebook) and other people like on here, who "brag" that they can do it in much better way...but cant land a job at Starbucks because, can't speak their name properly ;/

    • @raheenulhasan
      @raheenulhasan Před 3 lety +12

      @@milovanmilovanov2598 @Milovan Milovanov Did you see that I started the comment with "The solution I had", this was in no way demeaning to anyone and let alone you. I don't get why you got triggered and basically started ranting about stuff. Btw I did try it and when I got it, only then I posted this comment. Well your comment was distasteful here. On the name comment, please choose to accept people with different backgrounds and places trying to make the best softwares available.

    • @mechatronicalengineer8417
      @mechatronicalengineer8417 Před 2 lety +1

      I was thinking of something like this, too, but I'm thinking in python terms here. His solution is in my eyes - though appearing unnecessarily complex - actually much more elegant, as he does not check the words one by one, but all of them at once. Using a BFS here to navigate the graph of failure edges provides a major advantage when it comes to datasets much larger than the ones used for example here, as you basically build a "frontier" moving through the graph. It gathers much more results in one go.

    • @TashuAbhi
      @TashuAbhi Před 2 lety

      Yeah, but it had to be faster. He reduced complexity. Nice job by the way 👍

  • @rabinacharya8429
    @rabinacharya8429 Před 3 lety +18

    I dont understand any of the logic here.
    Yet I enjoy watching the full video.🤣

  • @xSferQx
    @xSferQx Před 3 lety +9

    So glad I'm working in small companies, don't deal with interviews like this and earn even better money

  • @md2perpe
    @md2perpe Před rokem

    Going directly for a complicated algorithm is seldom recommended. Usually data is small and a simple and straightforward solution works fine. In this case, the phone number can be expected to be relatively short, not more than 20 digits. The words will also be short. But the number of words might be large. Therefore, it's probably okay if the algorithm is O(N²) in the length of the phone number, but it should be O(N) in the number of words.

  • @axlrose010101
    @axlrose010101 Před 2 lety

    I'm learning Python and programming for 6 months now and i found the/a solution. Not sure that its nice or clean or "pythonic", and i still have a long road ahead. But I'm so happy and it's a great feeling ^^

  • @chloeagape4853
    @chloeagape4853 Před 3 lety +5

    cool! I actually came up with like 75% of the solution before seeing what he did. I was stuck at figuring out how to backtrack back once you've explored a path, and I guess there was a fancy algorithm (aho) that finds the fail links. In a real interview, I guess leaving out the aho algorithm would be ok as long as you were able to mention and talk about it.

  • @nemotivity
    @nemotivity Před 3 lety +23

    Google Coding Interview With A Facebook Software Engineer who is wearing a Google T-Shirt! 😅

  • @dev-skills
    @dev-skills Před 3 lety

    Great to see you are sticking to primitive int arrays instead of Arraylist

    • @dev-skills
      @dev-skills Před 3 lety

      Towards the end you used ArrayDeque which might upset interviwers who dont have java background.

  • @siouxperirish
    @siouxperirish Před 2 lety +13

    I enjoy the format of these interviews and I’m curious if you as the interviewer, would be open to redefining the approach to attacking this toward a solution. If you or others would generally be open to allowing the interviewee basically change the use case to begin with the end defining the beginning. If your eyes haven’t glazed over yet, what I mean in this situation is to try and convince the interviewer up front; agree on an assumption which would reduce complexity. I realize you’re looking for construction ability, complexity, quality, efficiency, but if you could agree ahead of time on a logic-based route to completion, before coding begins, then I would say I would provide the customer all the available phone number combinations they could choose from, as the output and ask them to enter their word since they’ve probably settled on a company name and just need to find a number that can represent the name.
    Not targeting this instance in particular but I guess I am. Overall, would this taint the interview or would this generally be thought of positively, a perspective employee pushing back a bit right up front. I know for me, I try to dumb the complexity down (for lack of a better phrase), so I can begin with what feels like my idea or my internal translation of the ask. Thanks and sorry if I’ve bored everyone with my question.

    • @andrewpeterson5882
      @andrewpeterson5882 Před 2 lety

      Would love to hear Clement's answer to this question as this very situation happens... essentially with every project in software design and consulting.

  • @mangeshrananavare5656
    @mangeshrananavare5656 Před 3 lety +7

    Tbh this could have been done in such a simple way. I dont understand why ppl dont simply use arraylist/maps and existing built in datastructures, which already have utility methods that make our life so much easier..
    None the less nice problem

    • @kira7741
      @kira7741 Před 3 lety

      I would have used an arraylist here however I'm not sure how to compute the space time complexity. So maybe they're after the lowest time complexity here.

  • @satyampatidar5848
    @satyampatidar5848 Před 3 lety +10

    David (aka second thread) completed his bachelor's degree in 2020.
    And now he is full time Engineer i think

  • @jmiller4559
    @jmiller4559 Před 2 lety

    Amazing job! Learned a lot! Thanks!

  • @tahartouati9349
    @tahartouati9349 Před 3 lety +1

    I have had this problem on a coding challenge but on steroids (list of phone numbers and list of strings, and then return them in an ordered list) basically the hard part was to get it done with an acceptable runtime

  • @JohnCodes
    @JohnCodes Před 3 lety +3

    Might as well start rounding out FAANG with some netflix, airbnb, etc interviews!

  • @sandeepnath9504
    @sandeepnath9504 Před 3 lety +15

    That was pretty complex😵. If I were asked this question by an interviewer in some companies interview I would have said like the best possible solution to this problem is not trying for this company at all...!!!😂

    • @chernanq88
      @chernanq88 Před 2 lety +1

      hahaha yeah... and for a simple phone number

    • @Solaris428
      @Solaris428 Před 2 lety

      He overcomplicates it though IMO, maybe because he wanted optimal complexity idk .

    • @therealg4197
      @therealg4197 Před rokem

      its not hard. You can solve it with a hash map . Its getting a super optimal sol that's hard

  • @NuanDaa
    @NuanDaa Před 2 lety +1

    It’s easy but very understandable explanation.

  • @kaveenjayamanna3076
    @kaveenjayamanna3076 Před 2 lety

    Please keep doing sessions like this

  • @radulaski
    @radulaski Před 3 lety +8

    Just using RegExp for this type of interview would be out of a question?

  • @Pctech4uproductions
    @Pctech4uproductions Před 3 lety +4

    You said you'll put a link to aho korasick algo in the description :(

  • @adithyaks8584
    @adithyaks8584 Před 3 lety +1

    I got this in an interview with FAANG
    (PS: I wrote a recursive solution and cracked it, we didn't venture into dp... If dp is required store an array of strings that has all possible strings starting with index i)

  • @CalisteniaPL
    @CalisteniaPL Před 2 lety +1

    As a 18 year old with basics notions of programming, this makes me wanna spontaneously combust

  • @gitlit5489
    @gitlit5489 Před 3 lety +11

    i want back my educational round explanations

  • @codefallacy
    @codefallacy Před 3 lety +26

    when the interviewee brings out the big algorithms

  • @luke0750
    @luke0750 Před 26 dny

    I don't actually do that much algorithms and data structures but I looked at two videos Clement and I solved both of them in between 1-2 hours. Its not really hard for me even tho I have only 2 years of experience. I will admit that I make a lot of mistakes and I might not be that much articulate and explain things that I am doing in such clear way that those engineers do. When you first watch video you say these guys are super genius or that kind of but when you actually do them it really is easy. I hope I will keep up doing algorighms for a week I really enjoyed those problems.

  • @hellobro8837
    @hellobro8837 Před 2 lety

    Someone like clément can only put ad of his own company in his video.

  • @steve680
    @steve680 Před 3 lety +3

    You should try running the code to see if it actually works. This is one of the problems with these whiteboard exams. And you should have him comment his code too.

  • @PraveenKumar-lp6il
    @PraveenKumar-lp6il Před 3 lety +5

    After watching 30 mins I can't even under the question 😅😅🤣😂

  • @fabriziodutto7508
    @fabriziodutto7508 Před 3 lety

    Well, translating the words into string of digits, loop for every digits string, if the digit string is contained in telephone number as a string of digits (first occurrence) return word is contained otherwise word is not contained... there are many methods to compare two strings, and we're not going to re-engineering the wheel... To further optimize, you can momoize the function that check if the "numerical" string is inside the telephone number.

  • @dev-skills
    @dev-skills Před 3 lety +1

    Converting the array of words to equivalent number strings.. and then iterate each string and check phoneNumber.indexOf(str) != -1 to insert it to the output array.

  • @caralmar1
    @caralmar1 Před 3 lety +8

    JavaScript can do this very quickly with built-in functions.
    Step 1, create an object (which is searchable) that has each letter mapped to a corresponding digit.
    For example:
    var digits = {};
    digits.a = 2;
    digits.b = 2;
    digits.c = 2;
    digits.d = 3;
    ...
    Step 2, simple for loop that converts words in given input array to numerical representation:
    for (var word in words) {
    numbers.push(words[word]
    .split("").map(function(item) {
    return digits[item]
    }).join(""));
    }
    Step 3, return result by using "includes" function and filtering out nulls from the map:
    result = numbers.map(function(item, index) {
    if (phoneNumber.includes(item)) {
    return words[index];
    }
    }).filter(function(item) {
    return item !== undefined;
    });
    return result;
    While my solution may not be the fastest, given the easy readability and maintainability of the resulting code, I would opt for that solution over a more esoteric node approach. Just my 2 cents!

  • @h2_
    @h2_ Před 3 lety +3

    I'm a little bit confused by one aspect. In drawing up the tree, he said he would actually first convert the letters to digits, so a tree of bat would have nodes 2 2 8 instead of b a t. I understand how he can find substrings 2, 22, 228, 28, 8 in there. But if his word list has multiple permutations that encode to 228 like cat bat cbt bcu, what does the tree look like? It's just a single branch 2 2 8, right? How are you able to go back and say you visited each of those words?

    • @Sethdemasi
      @Sethdemasi Před 7 měsíci

      You could have a list of words and a list of words converted to digits where the indexes are the same. Alternatively, have a dictionary where the key is the converted word and the value is true. If the converted word is not in your dictionary, search for it. If it is and is true, don’t search again just return true.

  • @Aks-47
    @Aks-47 Před 2 lety +2

    waiting for a HEALTHYUG google coding interview round!

  • @farazcsk
    @farazcsk Před 2 lety

    Great video! Any tips for coding in Google docs? It looks like here David actually managed to get indentation working at least

  • @sanketsaxena3558
    @sanketsaxena3558 Před 3 lety +16

    Please try to call gennady korotkevich on your channel for these kind of google interview.. It will be fun to see how he see these interviews..

    • @-_RonyMir
      @-_RonyMir Před 3 lety

      Watch his live streams instead!
      His solution's r just out of the box! I dont even dare to look at his code!!🙄

  • @aituganmirash2834
    @aituganmirash2834 Před 3 lety +8

    Petition for Clement to add this question on algoexpert

  • @user-jw8br8tu6y
    @user-jw8br8tu6y Před 4 měsíci

    Simple solution is to make a hash from letter to number.
    Use hash to generate string
    Use regex number match hash(letters)
    Complexity is less than (number length)*list converted
    Where the conversion is average word length times number of words

  • @davidkezi6086
    @davidkezi6086 Před 3 lety +6

    watching this, i don't know if i can ever be this good

    • @chris9352
      @chris9352 Před 3 lety +1

      Why not?

    • @MrRushifyIt
      @MrRushifyIt Před 3 lety +6

      It's a really bad habit to compare yourself to others. David is "this good" because he focuses his attention on learning and teaching rather than doubting his ability. You should watch this and feel inspired to learn!

    • @kokoriko580
      @kokoriko580 Před 3 lety +1

      you know, im so so happy when i created login form (not reaponsive) with simple html and css.
      if i compared myself to this guys, im nothing, but remember, there are people below you cant do things you do right now..
      but im still hoping that i can be as good as this guys, i wont compare myself tho, but i learn from them..

    • @chris9352
      @chris9352 Před 3 lety

      Analogy:
      If you never learned how to ride a bicycle, the beginning of you deciding to ride one will be rough and make you wonder how is it even possible to have such control/balance on that 2 wheels thing!
      But if you perceiver you will eventually get to a point where you start getting it right because it's not magic but rather all about adaptation.

    • @fluttersulan291
      @fluttersulan291 Před 3 lety +1

      They practiced years for this kind of stuff and all they do afterwards is pattern matching and reuse the knowledge they already have. Mostly they lack some other concepts in CS.
      So don't think like that, just start solving some problems on yout own and you will see that it will get easier and easier.

  • @euclid9492
    @euclid9492 Před 3 lety +17

    It’s funny watching him solve this. I would have immediately confidently said make a 2D array with each sub array holding the chars that the given phone number digit maps to. Then go through one at a time through the chars in the word we’re looking at and use a nested for loop to compare that char to the set of letters the current phone digit maps to. If a char matches, check the next letter in the word with the next set of chars. If chars match, the word is a substring. Upon first mismatch exit and do the next word. Do this for the length of the word we are comparing. Do this with a sliding window hence the nested loop. Now that I think about it that’s probably the slowest possible O(phone#length^2•wordLength)solution. 😂 I wouldn’t have thought to ask if the phone number can be more than 10 numbers either so I maybe would have thought this to be acceptable. I’m just getting my head around coding graphs and hash maps, I guess Tries are the next iteration in my data structure learning path. We skipped it in my data structures class but it seems very useful.

  • @iconicae8814
    @iconicae8814 Před 2 lety

    thank you for these useful interviews

  • @CharlesRay87
    @CharlesRay87 Před 3 lety +1

    Hi @Clem! What is an acceptable solution you mentioned, not requiring AHO algorithm?

  • @risingdevelopment6635
    @risingdevelopment6635 Před 3 lety +3

    I started laughting so hard at 29:30 when David sai "kids" all those times haha (not kidding)
    Really good video, Clément, and really good interview David. I'll probably subscribe to AlgoExpert tbh, on each video you release my will increases haha

  • @Cmbhsd
    @Cmbhsd Před 3 lety +3

    Would i be allowed in a coding interview to use a dictonary in python to map the letters to the numbers to be able to decript the words easier and simplyfy the problem? Because all of this seems more complicated to me then the actuall problem. Yet it was very fun to implement for me

    • @korvan
      @korvan Před 2 lety +1

      Was thinking the exact same thing....and he mentioned it as his first possible solution then completely forgot about it for complexity (it seems)...haven't watched to full video to see why he went with that approach.

  • @luisecmartinez
    @luisecmartinez Před 2 lety

    I genuinely have no idea whats going on but I've watched a few and im intrigued

  • @Grr1967
    @Grr1967 Před 3 lety +1

    Great video. One thing I learned is that black t-shirts are mandatory for both interviewer and interviewee :-)