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: kzbin.info/www/bejne/b5zMYmCumpuLsLc - as well as David’s KZbin channel if you’re into competitive programming: kzbin.info/door/XbCohpE9IoVQUD2Ifg1d1g
@SecondThread4 жыл бұрын
Thanks for the interesting and fun problem! I really enjoyed the opportunity to work on it!
@abhiramianbu51374 жыл бұрын
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?
@same05334 жыл бұрын
why is the facebook software engineer wearing google's tee??
@OG_Scratch4 жыл бұрын
@@same0533 That was google code jam competition tees
@same05334 жыл бұрын
@@OG_Scratch oh
@sumitroy20063 жыл бұрын
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!
@jimmyadaro3 жыл бұрын
Absolutely yes
@MaitraRoy3 жыл бұрын
@@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.
@omerahmaad3 жыл бұрын
Sumit you are a wise man and great comment I agree 1000% but add another thing landing on interview
@HangNguyen-wu3fs3 жыл бұрын
before leetcode type of questions, there were whiteboard questions. I'd rather do LC type of questions than whiteboard questions.
@abhi-shekb3 жыл бұрын
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_development3 жыл бұрын
dude be bussin out random algorithms that even the interviewer doesn’t know out here like “lemme use the ahoshinjinjutsu”
@vedantgarode3 жыл бұрын
😂😂🤣🤣
@johnyepthomi8923 жыл бұрын
😅 Panic mode ....
@Itachi_Uchia13 жыл бұрын
😂😂😂😂
@johnnm32073 жыл бұрын
ahhhhhhhhhhhhhhhh
@soruzein29883 жыл бұрын
😂😂😂💀
@snozzd4 жыл бұрын
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.
@Dreadheadezz4 жыл бұрын
Nah deadass bro I'm right with you 😂😂😂😂😂😂😂😂😂
@sanchit5374 жыл бұрын
Hahahahaha
@Rugg-qk4pl4 жыл бұрын
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
@mastaharashibu70924 жыл бұрын
YES that's a great idea
@siliev3334 жыл бұрын
Better yet a candidate that doesn't know what binary search is.
@KennyTalksCode4 жыл бұрын
12:45 honestly most impressed with him drawing out the trie in google docs, that's a skill in itself.
@kose2414 жыл бұрын
The speed was insane 😂
@mirsella62044 жыл бұрын
space bar go brrrrrr
@varmamahesh97254 жыл бұрын
@@mirsella6204 I think it goes like "tuk tuk tuktuktuk tuk"
@mariyadimitrova20974 жыл бұрын
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
@TheDarknessDragon3 жыл бұрын
Lol I love this comment the most 🤣🤣
@themptytree31453 жыл бұрын
trie
@alankruthsai2 жыл бұрын
🤣
@jerodewert833410 ай бұрын
I spend so much time going: why not a hash table?!
@somiltyagi71274 жыл бұрын
we can scare our interviewer by saying different algo names
@lolerskates8764 жыл бұрын
The Corbomite Maneuver Algorithm gives O( log(log(n)) time. Runs quick for even international phone numbers
@paraggupta26384 жыл бұрын
@@lolerskates876 ok lets go with that
@RoshanPradhan24 жыл бұрын
@@lolerskates876Can you give me a link to that algo??
@dev-skills3 жыл бұрын
I found throwing out these jargons and technicals terms on interviewers face very effective in impressing the interviewer.
@TechnicalAnkesh3 жыл бұрын
yeah!! LOL
@xbmcme97683 жыл бұрын
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.
@azz111full3 жыл бұрын
I've been a developer for about 8 years and this video blew my mind 😂 there are levels to this shit
@alekseikharchenko72463 жыл бұрын
@@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.
@disakek54382 жыл бұрын
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)
@kyopa93612 жыл бұрын
what is CP?
@TK-fo5xl2 жыл бұрын
competitive programming
@kaushaldawra35273 жыл бұрын
that's not just a facebook engineer, that is a competitive coder
@tiberiusvetus91134 жыл бұрын
Programming interview tip: disable spell check, auto correct, turn on mono space font
@sagivtamir31022 жыл бұрын
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 Жыл бұрын
Yes that's way easier its some sought of rabin Karp
@GR8_Impact9 ай бұрын
This problem looks similar to word break problem. Is this correct?
@atharvsawarkar34495 ай бұрын
I solved it with a hashmap. Converted the input number to a hashmap with the count of each digit, and did the same for every test word in the list. then you just compare the letter counts in both hashmaps to see if the test word can be created.
@Doubel11 күн бұрын
@@atharvsawarkar3449 This approach would not preserve the order of any of the characters/numbers in either string. The order matters.
@JacobHuber3 жыл бұрын
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.
@renjithroy84224 жыл бұрын
Just learned to declare a variable in Javascript today and then I watched this video! 🥺
@KETANRAMTEKE4 жыл бұрын
You are on a right path young Jedi.
@jpncmu4 жыл бұрын
I know how you feel.
@meliodas45604 жыл бұрын
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
@ancarwillis90604 жыл бұрын
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.
@adilimanaliev30084 жыл бұрын
i swear😢
@weirdinternet60204 жыл бұрын
24:03 that's me in every coding interview
@dq3034 жыл бұрын
😂😂😂
@aj97063 жыл бұрын
I am jobless
@Solaris4282 жыл бұрын
Nice one.
@Fam-m4i6 ай бұрын
Good one😂
@Grr19674 жыл бұрын
Wondering if he refers to neighboring node in a graph as "bro" :-)
@clem4 жыл бұрын
🤣
@123aniruddhsiddh4 жыл бұрын
Kids and bros :D
@divvagg56164 жыл бұрын
@@clem hello sir , can you please provide or suggest any source to learn data structures and algorithms from absolute beginner to master level .
@qutaibaal-nuaimy16974 жыл бұрын
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!
@iqramunjoreen43123 жыл бұрын
Thank you for this comment. Really. I was sweating and crying at this video
@tonaxysam3 жыл бұрын
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)
@obsidian80372 жыл бұрын
yes.
@dionisorules2 жыл бұрын
@@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.
@MegaJiggaa2 жыл бұрын
@@dionisorules it runs in linear time, just bfs
@NytronX4 жыл бұрын
Pro tip: You can name drop Aho in an interview, but never call the interviewer Aho.
@pradeepganesh7124 жыл бұрын
Ahh.... A man of culture I see XD
@kelvinxg67543 жыл бұрын
Lmaoo
@seanlau80694 жыл бұрын
Now I want to see clem being interviewed XD
@Revelatus4 жыл бұрын
Wow I learned so much, including that I'm never gonna get a job as a programmer :D
@johnnycashcow11304 жыл бұрын
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
@tnikoli404 жыл бұрын
@@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
@xrealy57004 жыл бұрын
@@tnikoli40 how it went bro
@arphaksad013 жыл бұрын
Depends on the industry
@DeepThinker1933 жыл бұрын
@@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.
@viku4532 жыл бұрын
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 😊.
@quachiecan66444 жыл бұрын
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.
@rousseau3274 жыл бұрын
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.
@1andrew1234 жыл бұрын
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
@Jindujun4 жыл бұрын
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.
@quachiecan66444 жыл бұрын
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.
@darksavior11874 жыл бұрын
@@rousseau327 Sure, however, anyone soon to graduate and seek a new position are among the most likely demographic looking at these videos.
@MiketheCoder4 жыл бұрын
He's a facebook engineer? I thought he was a competitive programmer student.
@DanielNyong4 жыл бұрын
New grad, dope channel btw I watch you both.
@Radenaldienpr4 жыл бұрын
It's me
@NickRusev3 жыл бұрын
I just studied for loops and came across this video. My self-esteem dropped to the ground. 😅
@gianclaudiomoresi96503 жыл бұрын
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.
@ayushsrivastava4858 ай бұрын
#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
@JoshSmith-sr6ks4 ай бұрын
hi
@slayemin4 жыл бұрын
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.
@olokix4 жыл бұрын
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
@Smoothie1284 жыл бұрын
That is why you are not working at Google :D
@slayemin4 жыл бұрын
@@Smoothie128 Hah, you're right :) I work at facebook instead.
@hattapalkan83954 жыл бұрын
@@slayemin dude stop you destroyed him
@farhanaditya26473 жыл бұрын
@@slayemin bruh, that's brutal 😂
@adabaladurgaprasad79264 жыл бұрын
I regularly watch second threads KZbin channel, but didn't know he was a facebook software engineer till now🔥
@chinmaym74794 жыл бұрын
Same bruh
@prateeksinghal6304 жыл бұрын
You should have checked his Facebook profile : p
@ironyman70154 жыл бұрын
i though he was a student.
@alicebobson28684 жыл бұрын
@@ironyman7015 😂
@piyushpatel23474 жыл бұрын
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
@CaptainSchlockler4 жыл бұрын
Most convoluted approach to solving a problem I have ever seen. XD
@andrewyemtsev49934 жыл бұрын
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
@sar65754 жыл бұрын
David is an absolute god not only with his quick solutions but his coherent ability to explain things very simply is awesome !!!
@warpromo66364 жыл бұрын
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
@karankumar894 жыл бұрын
@@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
@cybermanga29162 жыл бұрын
That Guy is a Mathematician!
@KaitC-j3j4 жыл бұрын
Ive GOT to see this q&a video bc i am amazed how easily he walked thru all of this.
@_zaverus2 жыл бұрын
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.
@the0dd1out_on_yt3 жыл бұрын
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)
@zhenniu24512 жыл бұрын
@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.
@zhenniu24512 жыл бұрын
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.
@SyedAhmed-lv3kh4 жыл бұрын
u guys had me at the part where u were explaining how the words correspond to the numbers :D
@ZCxMusic4 жыл бұрын
I already have a job in programming but watching this still makes me shit my pants.... I'm very far from his level
@aj97063 жыл бұрын
I don't have a job bro I am from india.
@cybermanga29162 жыл бұрын
@@aj9706 I am laughing at all you people! reading the comments like i know everything! i don't know why LMAO
@elirannissani9144 жыл бұрын
You have to do a coding interview with the cherno he is SUPER SMART!!
@mangeshrananavare56564 жыл бұрын
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
@kira77413 жыл бұрын
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.
@RzariRzari4 жыл бұрын
So glad I'm working in small companies, don't deal with interviews like this and earn even better money
@CalisteniaPL2 жыл бұрын
As a 18 year old with basics notions of programming, this makes me wanna spontaneously combust
@souravsaha14434 жыл бұрын
Second thread is my idol.. I follow him a lot for competitive programming
@abtExp11 ай бұрын
This just gave me anxiety about my upcoming interview at google😮
@radulaski4 жыл бұрын
Just using RegExp for this type of interview would be out of a question?
@adriandotta98084 жыл бұрын
Question! Maybe I didn't understand the problem. He gave the solution at minute 5:00, so why didn't go with this simple solution instead to go through this more complex solution? (like loop the array of words converted in numbers and use the "contain" function to see if is contained in the phone number) Thanks and sorry for don't understand :S
@codefallacy4 жыл бұрын
when the interviewee brings out the big algorithms
@rabinacharya84294 жыл бұрын
I dont understand any of the logic here. Yet I enjoy watching the full video.🤣
@chloeagape48534 жыл бұрын
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.
@HokageKyubiNaruto3 жыл бұрын
Where do you work
@EliaBonetto4 жыл бұрын
What about using /10 and % length of the converted word? Then you can subtract the two numbers if the result is zero you've found it. Would be O(n*#words).
@h82w8_13 жыл бұрын
Top solution! Much better than algorithm which was implemented in video!
@alexIVMKD4 жыл бұрын
Amazing... Really liked this one. Also, liked seeing some java.
@pjfurious13784 жыл бұрын
Done is 16 lines of code. How does it compare for an interview? (python) : def MatchChecker(words, phone_number): letters_in_num = ('', 'ABC', 'DEF', 'GHI', 'JKL', 'MNO', 'PQRS', 'TUV', 'WXYZ') match = [] for i in range(len(words)): tester = '' for j in range(len(words[i])): word = words[i].upper() for k in range(len(letters_in_num)): if word[j] in letters_in_num[k]: tester += str(k+1) match.append(tester) for i in range(len(match)): if match[i] in phone_number: print(words[i])
@steve6804 жыл бұрын
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.
@khinljk6 ай бұрын
skill 100 %, code readability 100 %, communication 100%, you have nailed it 2nd tread, Google is knocking your door. : )
@zanies62884 ай бұрын
He probably doesn't want to switch. Every year he gets opportunity to set problems for mera Hackercup and commentate on it. Imagine getting paid to do what you love. Google stopped all it's cp contests
@ab1232323 жыл бұрын
what im actually worried about is: this is the type of questions a fresh graduate student will face in interviews? Or what exactly am facing
@prim.x3 жыл бұрын
No, in fact, what you see here is a simple version of the question. People usually see harder questions. This is what separates us Real developers from the Kid developers.
@nicanthonysevilla85314 жыл бұрын
I'm not sure why it became so complicated when the problem is actually simple. Considering we have a constant of int=>['letters'] and then compare if the phonenumber(input) has it in the string. ->convert to int using the constants 1=a,b,c etc ->loop through the array of string ->substring to phonenumber -> true or false.
@Solaris4282 жыл бұрын
Well I'm also confused as to why it had to be so complicated. I don't even think you have a worse complexity with your solution.
@mattconrad3 жыл бұрын
LOL @ Clem's reaction when SecondThread says "Aho-Corasick" for the first time 😂
@sanketsaxena35584 жыл бұрын
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..
@-_RonyMir4 жыл бұрын
Watch his live streams instead! His solution's r just out of the box! I dont even dare to look at his code!!🙄
@aituganmirash28344 жыл бұрын
Petition for Clement to add this question on algoexpert
@Akosiyawin4 жыл бұрын
How impressive he knows such algorithms, How can he not forget that haha 😂
@mexicanmax2273 жыл бұрын
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
@alexisrodriguez71273 жыл бұрын
Passion!!
@ryangulati58724 жыл бұрын
Hey Clement, do you have a front end expert in the works? I would totally buy that!
@raheenulhasan4 жыл бұрын
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.
@milovanmilovanov25983 жыл бұрын
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 ;/
@raheenulhasan3 жыл бұрын
@@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.
@mechatronicalengineer84173 жыл бұрын
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.
@TashuAbhi2 жыл бұрын
Yeah, but it had to be faster. He reduced complexity. Nice job by the way 👍
@satyampatidar58484 жыл бұрын
David (aka second thread) completed his bachelor's degree in 2020. And now he is full time Engineer i think
@SecondThread4 жыл бұрын
Indeed, I'm surprised you know!
@satyampatidar58484 жыл бұрын
@@SecondThread yeah.. from linkedin
@TechnicalAnkesh4 жыл бұрын
David is a Great programmer!! he explains everything very nicely
@David-uc3cl Жыл бұрын
Thanks, wish everyone else would realize this
@xs-34 жыл бұрын
I don't know why but i like the way this guy talks and explains things
@sandeepnath95044 жыл бұрын
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...!!!😂
@chernanq883 жыл бұрын
hahaha yeah... and for a simple phone number
@Solaris4282 жыл бұрын
He overcomplicates it though IMO, maybe because he wanted optimal complexity idk .
@therealg4197 Жыл бұрын
its not hard. You can solve it with a hash map . Its getting a super optimal sol that's hard
@wraubertoslots3 жыл бұрын
Although it is not the point of this video, the letters on the dial pad were not originally to spell out words for 1-800 numbers. They stood as a way to make an exchange easier to remember. For example, when I grew up in Austin, Texas, our phone number was Hickory2-XXXX, or 442-XXXX. My grandparents were Greenwood8-XXXX, or 478-XXXX. These came in right after everyone switched from 5 digit phone numbers to 7 digit phone numbers. Remember kids, stuff existed before you discovered it.
@dev-skills3 жыл бұрын
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.
@aishwaryanair44453 жыл бұрын
Geat sir
@nemotivity4 жыл бұрын
Google Coding Interview With A Facebook Software Engineer who is wearing a Google T-Shirt! 😅
@aayushrajpurohit3213 жыл бұрын
Can we have this approach to the problem 1. We can create dictionary containing key as the digit and value will contain the list ofbrespective letters present in phone eg. In {2:[a, b, c]} here 2 is key and [a, b, c] 2. Applying for loop to whole input phone number, and checking in the dictionary for the specific number contains that starting letter of the word or not, if it contains the loop will check for the next immediate number of the and next immediate letter is present in that number such way we can perform it. Please read this once and comment me below that is it correct or not Then checking that the letter of the input word is present in that numbers
@davidkezi60864 жыл бұрын
watching this, i don't know if i can ever be this good
@chris93524 жыл бұрын
Why not?
@MrRushifyIt4 жыл бұрын
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!
@kokoriko5804 жыл бұрын
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..
@chris93524 жыл бұрын
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.
@fluttersulan2914 жыл бұрын
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.
@fabriziodutto75083 жыл бұрын
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.
@siouxperirish3 жыл бұрын
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.
@andrewpeterson58822 жыл бұрын
Would love to hear Clement's answer to this question as this very situation happens... essentially with every project in software design and consulting.
@Aks-473 жыл бұрын
waiting for a HEALTHYUG google coding interview round!
@vikramc.n.11214 жыл бұрын
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
@dev-skills3 жыл бұрын
Great to see you are sticking to primitive int arrays instead of Arraylist
@dev-skills3 жыл бұрын
Towards the end you used ArrayDeque which might upset interviwers who dont have java background.
@jsidlosky4 жыл бұрын
Given the inputs probably change every time, building that aho table is way more expensive than just doing a string.Sub()...
@Tetsuyia4 жыл бұрын
The super basic solution of 'for each word check if phoneNumber.find(corresponding number string of word)' is already O(#words * lengthOfPhoneNumber)??? Does Second Thread not know about Knuth Morris Pratt?
@vasylvo4 жыл бұрын
Right. Why do we need suffix trie even? In case of the trie we will need lengthOfPhoneNumber^2 to build the trie + # of all character in words to check all words. Looks substring search solution (KMP or Rabin Karp) is easier and even faster. Correct me if I am wrong.
@SecondThread4 жыл бұрын
@@vasylvo No, you both are right. There are lots of ways of doing this in O(inputSize^2), but I wanted a faster solution. I felt Aho would be better because it has a better runtime, which is usually pretty important in these interviews.
@ManoToor4 жыл бұрын
David is a beast at coding. How wrong would I be if I said I'd just check for substrings in the original phonenumber after converting the words to numbers? Lol
@self.medicate3 жыл бұрын
I paused the video when the problem was announced and tried to come up with a whiteboard solution. And this is exactly what I want to know.
@AndrewWCarson3 жыл бұрын
@@self.medicate It's not too hard to do. I did a mathsy version that essential does "substring" type comparison. It's fast and much simpler than the ones used and described in the interview. You can find my code here: gist.github.com/AndrewWCarson/16150020cf65acc0ab35686dec005746
@fr52292 жыл бұрын
@@AndrewWCarson actual comment from your code: “this line is very smart” r/iamverysmart vibes lol
@HoldzItDown2 жыл бұрын
Aho-jurassicpark wtf. This dude just out here spitting theorems
@gitlit54894 жыл бұрын
i want back my educational round explanations
@md2perpe2 жыл бұрын
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.
@MrJichenyang4 жыл бұрын
Why not just do a KMP? The time complexity for KMP is linear. Straight forward solution could be go through each word, use kmp to figure out if it is included in the given phone number.
@the_cheese_cultist Жыл бұрын
you will kmp with the main string multiple times, so you get n*m aho corasic allows us to only pass through the main string once. giving n+m.
@zurikaneniddrisu472229 күн бұрын
A nooby non-CS programmer here. I just solved it by first creating a hashmap of all the digits. Creating a condensed string from all the words and searching each word from the list in the condensed string. Looks to work fine without the fancy algos. I have no idea what the time complexity might be though. Still got a long way to go
@AmanDeepSingh-xe9of4 жыл бұрын
The question seems simple, but boy the solution went over my head :(
@counterleo4 жыл бұрын
Yeah man, I coded a solution that's extremely simple really quickly with no fancy data structure or algorithm and I got the right output, not sure about the complexity though
@khmiri4 жыл бұрын
I think he was showing up... I solved it in a few numbers of code tho
@alwynmiranda34254 жыл бұрын
Is this algorithm works? input -> phone number --- PH & List of Words -- WW 1) create key value pair (dictionary -- DD) for numbers and the letters (numbers being the key) (list of letters being the value) 2) start iterating through the input PH (indicator II) loop: (until MATCH -- MM) get the corresponding letter from DD if it matches with any sequence in WW append to MM if whole word (MM) match found with WW append the word to OO delete that word in WW (to save time for the next iteration) else clear MM and move to next II 3) OO contains the final OP
@harispapadopoulos42954 жыл бұрын
oh man, the excitement I get every time I see the notification that clement uploaded a new video
@filippetrovic25962 жыл бұрын
If I'm not mistaken, the real lesson here is to make up some algorithm on the job interview with excuse its pretty complicated so we can just write pseudo code.
@h2_4 жыл бұрын
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 Жыл бұрын
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.
@luisecmartinez2 жыл бұрын
I genuinely have no idea whats going on but I've watched a few and im intrigued
@sarthaknikhal55404 жыл бұрын
Clement be like, "I know you work in a cool company but let's see if you're eligible to work at another cool company!" 😂
@temphemp92512 жыл бұрын
Just so people don't get discouraged. These types of interviews are not just about natural skill but also memorization. Because unless you've actually seen and implemented an Aho-Corasick algorithm then you would've probably had a very hard time in this interview.
@daark31134 жыл бұрын
*Facts about clement* Everyone: He worked at google and Facebook. Me: He has a secret Black V-Neck shirt collection
@fyiwdt4 жыл бұрын
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.
@euclid94924 жыл бұрын
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.
@tahartouati93494 жыл бұрын
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
@caralmar14 жыл бұрын
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!
@karlwhitford75232 жыл бұрын
Nein
@adithyaks85844 жыл бұрын
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)
@abhaypatil20004 жыл бұрын
I have been watching his videos since a long time. I never knew he was in facebook. Congrats secondthread🤗🤗🤗🤗🤗🤗
@aj97063 жыл бұрын
He is grandmaster. So it is meta
@frankyoung49803 жыл бұрын
He named the children nodes as kids because kids are much shorter to type, which is smart especially in a time critical coding interview using a doc.
@shubhamqweasd4 жыл бұрын
great video... I think Aho-corasik is not practical for an interview ... :( , does google/fb expects an interviewee to know aho-corasick ?
@juancarlosgarciamedina87884 жыл бұрын
You are right, I think this problem could be solved with the same complexity without using Aho-Corasick, but yet it is a hard problem and I think this kind of problems only appears in a real interview when they see a resume with keywords like "icpc world finals" , "grandmaster codeforces", "ioi medal", or with a master degree in CS
@Grr19674 жыл бұрын
I agree. I think that even if I knew about this algorithm I would tell it to the interviewer as a possible way to optimize my original algorithm but do my interview solution without relying on it.
@kaustav9993 жыл бұрын
it can be easily solved by hashmapkey=numbers and value=alphabets??