Hey can you add videos for Maximum subarray and word break , Longest Palindromic Substring
@shwetajaiswal76615 жыл бұрын
Hi, can you make a video for Word Ladder II? It would really be helpful.
@ryzen9804 жыл бұрын
Ya.....they sure are fun.......
@viren33994 жыл бұрын
@Kevin Naughton Jr. can you please make video on leetcode 139 word break problem ?
@rodanm3 жыл бұрын
not if you leetcode everyday all day...
@FrankLi925 жыл бұрын
i got kind of confused with your count variable. i think it makes more sense to use "idx" instead because that's the index you're checking. and for your base case, it'll trigger true if your "idx" == len(word), since it's 0-based still.
@rishabhratan29254 жыл бұрын
it will pass on when charaters match at the last index and increment the idx count which will make it equal to the size of word.
@vidzpk51444 жыл бұрын
I've been trying to learn to apply BFS on a matrix or 2d board for so long, this is the first time I actually understood what was going on, thank you
@KevinNaughtonJr4 жыл бұрын
vidzpk anytime happy to hear it was helpful :)
@ashleywilkonson3864 жыл бұрын
Do the Rotting Oranges problem, this one is a DFS backtracking solution.
@chasethorpe42534 жыл бұрын
I watched like 8 different videos on DFS and solving boggle style problems and this was by far the clearest and easiest to understand. Thank you so much man.
@KevinNaughtonJr4 жыл бұрын
Chase Thorpe anytime dude
@shahnawazalam99393 жыл бұрын
Kevin, time complexity is not O(N) as you mentioned. It is N*M where N is total cells in metrics and M is word length.
@AnushkaSingh-b6z Жыл бұрын
He clarified where n is the number of cells, which is = m*n or n^2
@uselesvideo5 жыл бұрын
hey Kevin, not sure if you are gonna read this though, I have a couple questions so I did this problem iteratively, thinking if the input is very large then stack overflow might occur. My first question is-> how frowned upon is it to use recursion for problems? some problems are incredibly hard without recursion , what to do in those cases if we cant use recursion? I usually steer clear from it thinking that it I might lose points in interview for using recursion. This is my code in python3; in iterative approach; I can't see any obvious way to optimize it, maybe you can spot it( pls help lol); but this code runs twice as slowly and has a worse space complexity than a recursive solution due to the new set allocation for each stack push. ``` import collections class Solution(object): def exist(self, board, word): """ :type board: List[List[str]] :type word: str :rtype: bool """ if not board or not word: return False stack=collections.deque() for i in range(len(board)): for j in range(len(board[0])): if board[i][j]==word[0]: stack.appendleft((i,j,0,set())) while stack: entry=stack.pop() if (entry[0],entry[1]) in entry[3]: continue else: entry[3].add((entry[0],entry[1])) if entry[2]==len(word)-1: return True if entry[0]!=0: if board[entry[0]-1][entry[1]]==word[entry[2]+1]: stack.append((entry[0]-1,entry[1],entry[2]+1,set(entry[3]))) if entry[0]!=len(board)-1: if board[entry[0]+1][entry[1]]==word[entry[2]+1]: stack.append((entry[0]+1,entry[1],entry[2]+1,set(entry[3]))) if entry[1]!=0: if board[entry[0]][entry[1]-1]==word[entry[2]+1]: stack.append((entry[0],entry[1]-1,entry[2]+1,set(entry[3]))) if entry[1]!=len(board[0])-1: if board[entry[0]][entry[1]+1]==word[entry[2]+1]: stack.append((entry[0],entry[1]+1,entry[2]+1,set(entry[3]))) return False ```
@Nobody23105 жыл бұрын
Kevin, you mentioned time complexity as O(n) where n is number of cells but for each cell we are calling DFS if the character matches , why dint we take that into consideration in time complexity analysis?
@dimitrivasilev29055 жыл бұрын
correct. Time complexity is O(N*s) where s is the number of characters in the string and N is the number of cells in the 2D array
@varunrao29314 жыл бұрын
@@dimitrivasilev2905 you can say its O(n^2) worst case because you are visiting every character and then for every character your DFS can visit every cell in the board
@sushantkshirsagar4 жыл бұрын
EVERY CELL will not go to dfs. If the cell char does not match the char at specific index in word we are interested in then we will just be returning false right there. Only the cell which matches the char at that index we will move fwd with dfs which will happen when we get a word
@varunrao29314 жыл бұрын
sushant kshirsagar sure. But we can still approximate it’s O(n^2)
@sushantkshirsagar4 жыл бұрын
Got it Varun. Thanks. You are right
@shrawanipampatwar34874 жыл бұрын
Kevin, love how you make the problems look so easier, love your coding style. Thank you for such amazing videos. Looking forward to having you solve Word Search II sometime.
@shrawanipampatwar34874 жыл бұрын
I was able to reuse the same Word Search solution and solve Word Search II, yay!
@shivansh-gup3 жыл бұрын
@@shrawanipampatwar3487 im stuck on it could you share your solution please
@Makwayne2 жыл бұрын
Here's my contention with your video. It is a beautifully written modular code. However, majority of people approaching leetcode problems are looking at them from an interview perspective. So it's not enough to get a modular, beautiful code but the essence is in the manner you reached to that code. And nowhere was I able to discern how did you arrive to this solution. Honestly, that's what I am looking for in such a video. Don't get me wrong, I liked the video. I'm just looking for something more
@vishnurudhva44943 жыл бұрын
Instead of storing board[i][j] in a temp variable, you can just use word[count] to get back the original character, since word[count] == board[i][j].
@anuragsrivastava67152 жыл бұрын
Wouldn't that be easy if we set up the Hash map for all the frequencies of the letters and then iterate over the characters one by one to search the word?
@travisc94363 жыл бұрын
Can someone explain how the time complexity is O(N) or O(M*N)? I was thinking O(N^2) because for every cell you possibly track more than half the cells on the board.
@rccsrgaming69873 жыл бұрын
For anyone else who is confused. The "n" is dependent on the context. It could be the number of rows, number of columns, or number of cells. In this video he says it's O(n) where n is the number of cells. However, you can also call it O(n*m) where n is the number of rows, and m is the number of columns. Additionally, if n==m (number of rows is equal to columns), you can call it O(n^2) (where n == cols/rows) since you might need to traverse the whole board.
@rah72073 жыл бұрын
Perfect explanation
@anup90343 жыл бұрын
Worst case doesn't seem O(N) even if N is all cells on board. We iterate the board once (N) for each N we might go deep upto N more cells. So isn't it O(N^2) ?
@varunrao29314 жыл бұрын
time complexity is O(n^2) because for every single element we can perform our DFS and our DFS can visit every cell in the board.
@goodpeople76154 жыл бұрын
He said that only but n in his way in total no of boxes in grid
@shubhamgoyal15474 жыл бұрын
Shouldn't the time complexity be m*n*(4^s) where m = number of rows, n = number of columns and s = length of the word? We have to consider the time complexity for the dfs as well right?
@Arunk0542 жыл бұрын
This is the correct runtime
@vishalbahedia67205 жыл бұрын
Hi Kevin, just have a small question. Are you always showing the best solutions to the problems or if we show the solution you present here in the interview, then is it fine? Or we should ALSO look for a more optimal solution in terms of space and time?
@NithinRajuChandy2 жыл бұрын
It’s usually the best solution. You should look at other solutions as well to get a good grasp of the problem.
@klsajdklajldkadad5 жыл бұрын
Why do you need to add the 'temp' letter back after the recursive calls?
@DatGuyWhoComments5 жыл бұрын
For the leetcode problem you don't need to but its good practice to return the board in its original state in case you'd want to do more things with it later.
@augustoglez4 жыл бұрын
good question! this is the tricky part of the problem. it's not just about preserving the original state of the board. If you don't do it, the algorithm won't work. it allows you to "backtrack" in case you go through a wrong path. It's the way to give a chance to future searches. You have to imagine what the recursion is doing to understand it.
@apoorvwatsky4 жыл бұрын
@@augustoglez Yep agreed, had to think about it for a while and write it down. There's a possibility that one of the recursive calls may lead us to a node from where we started off or it's already visited. We have to avoid that. So it basically marks that node as 'visited' and we come across newer unvisited node via DFS calls.
@cosmicdust21924 жыл бұрын
@Kurt Peterson As we proceed with dfs recursive call, we are changing the original value. It serves one purpose, we branch out into four different direction and some of these branches again branches out and they will eventually come at previous visited value. We should avoid that. So changing value will help this. However if we don't restore it , remember our current stack has called by parent stack which still has other three branches, they will branch out and utilise those values for the search if first branch hasn't found the word.
@vtvtify4 жыл бұрын
@@DatGuyWhoComments no, you do need to. Read this thread.
@sihamebazi97953 жыл бұрын
I code in Javascript I am so glad that I found your video. You make things easy and I followed your explanation. Thank you for your explanation. You are amazing!!
@Rajat-Sharma13 жыл бұрын
Thanks!! I was missing out on the point you mentioned at 5:57.
@rak5904 жыл бұрын
Thanks Kevin. Your videos are extremely helpful in my interview prep. I couldn't understand why count is passed as 0. It should have been 1 since we have already matched the 0th index. If you could pls explain this bit.
@karenhuynh13554 жыл бұрын
count is incremented by 1 in the dfs calls
@johnlee4165 жыл бұрын
Two questions. The first being, why do we start the dfs with a count of 0? If we already found a matching character, shouldn’t we start with a count of 1? Also how does this code work with the first if statement in dfs. If we incrmented our count in the previous dfs search and the length of the word matches the count it would return true even if the last letter doesn’t match up with the last letter of the word we’re looking for no? For example in the word car if ca matches then we would do a dfs of count = 2+1 so when the next dfs runs count would be 3 and it would return true even if the final letter was for instance t as in cat
@pawankumargubbala89433 жыл бұрын
I was asked the same question today in Amazon interview and the follow-up is when multiple words are given what is the approach? I rocked the interview. Thanks for your videos.
@paramjitsingh-fg4fj3 жыл бұрын
Hey what about the time complexity? Is O(n*m) correct?
@shishirpandey77623 жыл бұрын
Can you make a video on the word search if the four diagonals are also included and word is found only when traversing in a certain direction rather than in zigzag manner
@shubamsharma57454 жыл бұрын
You are a Genius Sir. Awesome Explanation. I feel very delighted whenever i see your video on the topic i am searching because i know that i am going to understand it now. Thanks and please keep making more videos for us
@IldarIsm2 жыл бұрын
It is genius to blank the letter to prevent the returning.
@hydrohomie984 жыл бұрын
Runtime complexity is O(N*s), where N is the total number of cells in the grid and s is the length of the word. Correct?
@ivankorostelev95913 жыл бұрын
I think it is O(N*3^s) because for each cell that matches word[0], you keep branching off with a factor of 3 (actually, the first time it is 4 but later you can't explore backwards).
@Arunk0542 жыл бұрын
@@ivankorostelev9591 even though you can't explore backwards it still accounts for the computation as there is no easy way to eliminate the backward link.
@ossamaa.7164 Жыл бұрын
Can someone explain why we are setting the board[i[[j] back to temp? If we don't have to care about the same letter cell, why are we making sure we put it back to the letter it was on?
@michelagediminas72953 жыл бұрын
AFAIC Time complexity is not O(N) it should be O(N*S) where S is the length of the word and N is the number of cells in the grid.
@aravjitsachdeva40773 жыл бұрын
I thought I was the only one haha.
@jasonvazquez-li82644 жыл бұрын
Great video! You mentioned that we'll be using DFS to solve this problem, but how is the search an example of DFS? When I think of DFS I usually think of visiting the depth of a tree to look for a node, but in our situation, we're checking the neighbors for the next letter. Isn't that more BFS?
@kel.lyyyyle4 жыл бұрын
you are going through all neighbors until you're out of bounds or your count == length whichever comes first. That's DFS
@shivanib47233 жыл бұрын
James Gosling, Mike Sheridan and Patrick "Naughton" initiated the Java Lang project I got to know why ur genius man !!!😜😛
@abhishek-n-chaudhary5 жыл бұрын
Hey Kevin- Just out of curiosity- if you are given a problem to solve for a video that you made let's say a year ago, are you able to code the solution fluently or struggle on if conditions, signature of helper methods etc? I sometimes need to read, forget and read again to solve the same problem accurately. Any tips here?
@maganaluis925 жыл бұрын
I think you missed to explain a huge point in this code. What is the purpose of the temp variable.
@aj97065 жыл бұрын
to restore the value temp is used.
@cgqqqq2 жыл бұрын
even though i only know python, but I can still fully follow your way to solve and understand your code magically lol, gj bruh!
@satyam39932 жыл бұрын
You guys are straight up jumping into the code :( How/What do you "THINK" when you see these kinda problems?
@aj97065 жыл бұрын
Thanks pls solve word ladder problem With deep *explanation*
@amanvashistha9843 жыл бұрын
The same code in C++ is 570ms! Have you done any optimization?
@kafon63683 жыл бұрын
He edited it, his code is not 4ms
@knpatel864 жыл бұрын
Thanks Kevin. What if two adjacent cells have same letter that we are looking for, in that case those OR (||) conditions will make the flow go in only one direction and miss the other. Is it correct ?
@yashrat15 жыл бұрын
Can’t we use a trie and start with the index which has the first letter and search for the next letter in all the possible indexes horizontally and vertically?
@AKASH-sw9bs4 жыл бұрын
couldn't understand it from nick white's video .. but your one was very helpful .. thanks brother for such a good explanation .
@KevinNaughtonJr4 жыл бұрын
khalid hossain anytime! If you liked this explanation check out the interviewing service I created thedailybyte.dev/?ref=kevin I recommend joining one of the premium plans
@animeshbhatt29374 жыл бұрын
I got problem with the below test case :: grid = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]] word = "ABCB" This line should not come on first in dfs method :: if(count==word.length()-1) return true;
@christopherkim77623 жыл бұрын
What is the purpose of saving the word and replacing it?
@nandinisraghavan87883 жыл бұрын
Why are we returning boolean found ? like what is it calculating ?
@joekurokawa50213 жыл бұрын
time complexity not O(m*n *m*n) or O(n^4) because for every cell you are potentially doing a dfs and the dfs could potentially visit each cell ?
@InfluentialStudios5 жыл бұрын
Thanks for the tips! Seems like a much more efficient way than what I would have done.
@KevinNaughtonJr5 жыл бұрын
Haha anytime Nick!!
@GEhehloopf4 жыл бұрын
Why do you have to mark the current spot as blank. I don't really understand how that would satisfy the condition where you won't use the same cell more than once. Could someone explain please?
@alammahtab084 жыл бұрын
Handling False Match : Since our implementation is recursive, we may get in a scenario where, we have an exact match for a character but we have already counted that cell as a match before in our search. If we consider a cell, where we already found a character match, again, this will result in a false match. For example in the given board below, there is no match for the word ABCCC , but if we don't mark the already matched characters in our search, our implementation will result true, which will be wrong. [ ['A','B','C','E'], ['S','F','C','S'], ['A','D','E','E'] ] So to handle the false match issue, we mark each matched cell in our search with # symbol. By doing this we will avoid finding the same cell match for the character. [ ['#','#','#','E'], ['S','F','#','S'], ['A','D','E','E'] ] And our search will return false, because it won't find match for the last C in the word ABCCC We revert the value in the board to its previous value once we finish one entire search ( update # to actual value which was present at that cell) ❗️ ❗️ You can add breakpoint in the code to see, cell values updating to # as we progress in our search
@SudhanshuKumar-lp1nr3 жыл бұрын
Can somebody explain that after marking a character visited with " ", why are we again putting its original value back to it.
@dipleshmankape96723 жыл бұрын
Once you mark a cell visited, you go further into recursion exploring possible solutions, now after these recursive calls have returned their answers, you want to backtrack and mark the cell unvisited which you had marked " " and continue with other recursive calls (because now you may encounter the same cell from a new recursive dfs call)
@eugenevedensky60713 жыл бұрын
To allow other recursive calls to explore the cell when the algo "back tracks" after an unsuccessful attempt to find the word (hitting boundaries or not being the correct character)
@SudhanshuKumar-lp1nr3 жыл бұрын
@@eugenevedensky6071 thanks mate
@SudhanshuKumar-lp1nr3 жыл бұрын
@@dipleshmankape9672 thanks understood 🥰🥰
@guitarvoicing2 жыл бұрын
Excellent explanation, thank you. I see lots of videos trying to explain the same idea, but your is by far the best and easiest to understand. Please post more :)
@saulgoodman9804 жыл бұрын
In the if condition you can directly call dfs, the other check is redundant
@meetnikhil7194 жыл бұрын
Great explanation. much appreciated if you give us the time complexity too!
@powerlifter14503 жыл бұрын
Is there any way to combine the search for the first character into the main recursive function ?
@mashab91293 жыл бұрын
had a similar question with amazon today - they asked to find all words in a matrix.
@sanatanshrivastava37774 жыл бұрын
Hi Kevin, where did you learn this kind of recursive calls of dfs? It is insanely clear and awesome! Thanks a lot!!
@vtvtify4 жыл бұрын
Read the competitive programmer's handbook, free pdf (google). It contains alot of magically short inplementations, including this dfs style
@leanobajio5 жыл бұрын
I am not convinced the time complexity is O(n) since there is a recursive call.
@Davidh03305 жыл бұрын
it's r*c
@dmitrykarpenko22715 жыл бұрын
It must be, because we're marking currently "visited" cells as '' " (empty space), thus only checking the unexplored options. If there's a more strict explanation, please share it!
@saiamarnathchintha38775 жыл бұрын
Python Solution class Solution(object): def exist(self, board, word): def dfs(row,column,count): if(count == len(word)): return True if((row < 0) or (row > len(board)-1) or (column > len(board[0])-1) or (column < 0) or board[row][column] != word[count]): return False temp = board[row][column] board[row][column] = ' ' round = (dfs(row+1,column,count+1) or dfs(row,column+1,count+1) or dfs(row-1,column,count+1) or dfs(row,column-1,count+1)) board[row][column] = temp return round for i in range(len(board)): for j in range(len(board[0])): if(board[i][j] == word[0] and (dfs(i,j,0))): return True return False
@alinaalam30594 жыл бұрын
I don't think you really need to check first part of this condition: if (board[i][j] == word.charAt(0) && dfs(board, i, j, 0, word)) instead you can simply check this like this: if (dfs(board, i, j, 0, word)) The first part would get checked automatically in the dfs function when it would reach line 19
@rajathw4 жыл бұрын
True, but that would increase the number of calls to the dfs function unnecessarily. In his case the dfs would be called only if the first letter matches. Say for the case where the first letter of the word is at board[m-1][n-1] i.e. bottom right corner, then dfs would be called till the for loops reach board[m-1][n-1]. That could prove to be expensive. But I don't know if the expense would be trivial or significant.
@alinaalam30594 жыл бұрын
@@rajathw I also thought that it could be related to performance, but if you see inside the dfs function - for every call made, it will just return false if it doesn't find the first letter till it reaches to board[m-1][n-1] and calling a function x times that checks the same statement that you have outside shouldn't really be that costly. At least, I've never thought about this when I am calling functions so yeah, it could be that I am missing something But thanks for the feedback :)
@rajathw4 жыл бұрын
@@alinaalam3059 Right, yeah. Makes sense. It would exit the dfs function fast enough.
@praveenchouhan63884 жыл бұрын
looks like going at every path there would be 3 options, and total max possible word length is m*n, so the time for dfs calls will be 3^(m*n) for checking a word starting at each cell so overall time complexity will be - (m*n)*3^(m*n) right, can you please correct me here if I am going wrong??? @kevin
@PramodRj3 жыл бұрын
I have 111ms and you have 4ms as runtime. Not to mention i exactly have the same code.
@sharmilabaskaran73734 жыл бұрын
Your videos are awesome. Whenever I am in doubt to solve, I have a look at your videos and it gives me a clear understanding. I am preparing for my interview and hope to land a good job at a great company.
@KevinNaughtonJr4 жыл бұрын
thanks so much and put in the work and I'm sure you will!!!
@rumpasoor66374 жыл бұрын
@Kevin, I didn't understand the logic of putting space in the character at i,j position.
@rahoolification4 жыл бұрын
That is to ensure you are not reusing the same character while looking for the rest of the characters to complete the word during recursion. One you finish recursion you can add back the character.
@starrelina4 жыл бұрын
@@rahoolification why do we need to add back the character?
@mohakchaudhary19815 жыл бұрын
Is it needed to restore the value of board[i][j]??
@KrishnaKanchibhatta4 жыл бұрын
Yes, since it might be part of a different combination.
@felixcuello4 жыл бұрын
Perfect explanation at a perfect pace.
@KevinNaughtonJr4 жыл бұрын
Félix Cuello thanks!!!
@jessiegu48534 жыл бұрын
WOW! This is the best ever explanation of this kind of question! You rock Kevin!
@KevinNaughtonJr4 жыл бұрын
Jessie Gu thanks Jessie if you want other explanations like this subscribe to a premium plan on the interviewing service I just created The Daily Byte! thedailybyte.dev/
@swathir30145 жыл бұрын
The solution is great!! Thank you for explaining it so well..I understood it so well...Your videos are very helpful for my interview preparation. :)
@jayanthavasarala5 жыл бұрын
Can't thank you enough for all you are doing. Keep it up!
@KevinNaughtonJr5 жыл бұрын
Anytime Jayanth! Thank YOU for your support!!!
@ajr1791ze5 жыл бұрын
if(word[cnt] != board[i][j]) very crucial case to avoid tle.
@pravesh81875 жыл бұрын
just one question bro when you deleted that character and stored it as temp,code is showing error and it should be as that string will not be used until end tried it on interviewbit correction is that there is no need to delete that as we are changing columns and rows that character wont be repeated Anyways keep doing you great job brother
@shtephl3545 жыл бұрын
I believe you would need to delete it, since it's not one instance, char[i][j], that will be deleted. It is recursive, so as long as the character matches, it will create a blank spot for each character seen. So, as you follow each index of each character in the word, it will create a blank space for each character seen. Deleting it will guarantee no repeated indexes.
@krithikaselvapathy94633 жыл бұрын
hi Kevin, thanks for the good explanation able to understand easily.. actually request, if you could help me understand to solve a variation of connection components in a graph, which is evolving max connected components in graph when graph is sort of growing . that would be immensely helpful.. i had a interview where it was bit struggling to extend the base of connected components to this variation..
@ankitbhardwaj95664 жыл бұрын
this code was submitted on interviewbit,i want ot know why was it giving error on those lines because for multiple test cases these lines are important
@srishtichadha71624 жыл бұрын
Hey, @Kevin the video is great! But what is the basic difference between DFS and Backtracking? As DFS is a special type of backtracking and in Leetcode the question is categorized under Backtracking concept.
@snehashischattopadhyay95194 жыл бұрын
hey Kevin, Could you explain the part where you set temp = board[i][j] and then set board[i][j] = " " . How will this help in handling duplicate elements issue?
@tanmaybhatt69804 жыл бұрын
if the word was 'alarm'. Then board needs to have two 'a'. If it just has one then we need to return false. In order to handle that, after encountering first 'a' we would set it to any value that can't be in the board. So recursive call from 'l' would not use the same adjacent 'a' again.
@snehashischattopadhyay95194 жыл бұрын
@@tanmaybhatt6980 thank you!
@maripaz56504 жыл бұрын
Quality explanation, you just be great at interviewing!
@yashpreetbathla46534 жыл бұрын
You make code so easy man just love your videos !!
@KevinNaughtonJr4 жыл бұрын
Thanks Yashpreet I really appreciate that!
@AshwinKumar-ds5ip4 жыл бұрын
Why do we have to remember and restore the cell value at each recursion?
@bhargavacharan22624 жыл бұрын
Hi , as you can see in the line 24 , we are making the value of board[i][j] to ‘ ‘ . The reason why he made because in order to avoid compare the repeated values
@90krishika4 жыл бұрын
Best video for leetcode 79 in the youtube world
@chaitanyawaikar3824 жыл бұрын
Your explanation is so simple. Hats off. Thanks for the content
@shreyamduttagupta75274 жыл бұрын
Hey Guys/Kevin, I just started learning about DFS and BFS and have been solving problems on Leetcode. Can someone explain to me why this is DFS? From lines 25 to 29, we are checking all the nearby nodes to that specific cell, which is BFS right? or am I missing something here? Thank you so much for your help!
@preethiraajaratnam63994 жыл бұрын
It's DFS because as soon as you find a matching character, you move on to the next character in the string. Note the multiple recursive calls, where the first condition will complete before the second condition executes. In BFS, you would check all the levels first before moving on the children. Hope that clarifies!
@abhishekdutta84812 жыл бұрын
board[i][j] == word.charAt(0) is not necessary to check . Since we are passing count = 0 in the recursive call . So in the first call itself it will return false and not spawn more recursive calls . Other than that very clean elegant solution . Love the way you approach these sort of problems .
@RahulSaini-vs6fs3 жыл бұрын
I am using the same algo in c++ bit it's showing time exceed limit
@chaitu20374 жыл бұрын
Clean and easy to understand!
@aubame-bloodclut-zette67455 жыл бұрын
bro could you do a video on atlassian interview questions? Not cos I have have an interview there or anything haha ;)
@KevinNaughtonJr5 жыл бұрын
Hahah I think a lot of the problems I've done will overlap so hopefully they're helpful in your preparation!!! :)
@algoseekee5 жыл бұрын
I've had one once, the only thing you need to know if you're not from Australia is all sections are going to be via Skype, they do not conduct onsite ones :-) Also, they send you an online test on Hackerrank first.
@kumarc48533 жыл бұрын
Thank you for the video. one correction: is this really O(N)? Arent we also doing some work with DFS, which at recursion recurses in 4 directions. This would be N*(4**W).
@kafon63683 жыл бұрын
No he edited it, it does not run 4ms fast, almost 1 second runtime
@dhruvphansalkar14752 жыл бұрын
Can anyone explain why we need to set the current space on the board to empty?
@blasttrash5 жыл бұрын
you are explaining the solution, great. but how does one arrive at said solution? Like how to even formulate a strategy to do a dfs while running a for loop and keep everything in our head like matrix bounds check, that temp thing that you kept and so forth.
@KevinNaughtonJr5 жыл бұрын
Thanks! And yeah good point...I guess for this problem I thought it was pretty easier to conceptualize so I just figured a dfs was self-explanatory. I tried to explain every line as I wrote it / after I wrote it and why I did, but if you have suggestions on what I can do better I'd love to hear it!
@blasttrash5 жыл бұрын
@@KevinNaughtonJr yeah I totally like your videos. I also understand each line of code. I just dont understand how people(not just you, anyone else who does these problems also) even come up with a strategy to solve things. I guess it just depends on how many different types of problems you have done.
@ethanengland61863 жыл бұрын
How do you know when to use DFS over BFS?
@monkeytrollhunter4 жыл бұрын
Just solved Word Search. Will new grads will get questions like "Word Search II" ???
@willturner34403 жыл бұрын
You are god, you makes things easy 🤗
@ks-dd7gv3 жыл бұрын
This is backtracking, not dfs. And the time complexity will be max(m*n, 4^word_len).
@saravanansarangan70355 жыл бұрын
Hey Kevin I wish to learn recursion can you provide me some websites or books to learn about recursion for practice.
@KevinNaughtonJr5 жыл бұрын
I'm not sure about any particular books or websites but I would recommend trying to trace it on paper I think that helps!
@saravanansarangan70355 жыл бұрын
Okay Kevin thanks for the information. I will do it. Love you...
@KevinNaughtonJr5 жыл бұрын
@@saravanansarangan7035 Happy to help :)
@Marc-sf2xr5 жыл бұрын
I think space complexity is O(1), as we don't use any extra space other than the matrix provided(and a few extra int variables), please correct me if I am wrong.
@siobhanahbois5 жыл бұрын
I think he said that we're modifying the grid in place in line 23 and the worst case is if you need every character from your board to form your word, so that's O(n) where n is number of cells in the matrix.
@karenhuynh13554 жыл бұрын
Worst case there are n recursive calls on the stack (each time you call dfs you put that call on the stack, and in the worst case the word contains every letter on the board. So space complexity = # of recursive calls
@Marc-sf2xr4 жыл бұрын
@@karenhuynh1355 Yes, it is important to consider call stack in the space complexity, I didn't know that back then :)
@user-yx3tc2ru3y3 жыл бұрын
How about if we put all the words we need to search in Trie and run dfs on board
@sidn5154 жыл бұрын
redundant check at line 5 : board[i][j] == word.charAt(0)
@yaminchoudhury87324 жыл бұрын
bro you are a fucking legend thank you so much, hope your having a great day man
@KevinNaughtonJr4 жыл бұрын
thanks so much! If you need help with more questions like this check out the interviewing service I created thedailybyte.dev/?ref=kevin I'd recommend joining the annual tier if you can!
@laibamustafa1084 жыл бұрын
What’s the purpose of the temp variable?
@nomealow3 жыл бұрын
As you go deeper in dfs the board is getting modified and set to " " to avoid reusing the same char in the board, so when you're done with a dfs path and have to take a different path, you will need to reset the board to what it was at that particular point, which is done by setting board[i][j] = temp right before you return, so it will put back the original character on the board one by one as you backtrack the dfs until you reach a node that still has to be explored forward.
@atulchavan43304 жыл бұрын
thanks Kevin, understood very well. I am preparing for FANG with your videos.
@jatinthakwani53704 жыл бұрын
Can we optimize this solution by using dp?
@shardulkhadye58753 жыл бұрын
This solution is giving a TLE now , any suggestions to optimize this code ?
@rohanreddymelachervu34983 жыл бұрын
Can't thank you enough for everything you're doing!!
@fabusuyiayodeji70164 жыл бұрын
Awesome explanation!
@SammyTvMan3 жыл бұрын
Great explanation and great video quality, keep it up man
@jasmine95383 жыл бұрын
failing with this test case for anyone else? [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]] "ABCCED"
@narendramall785 жыл бұрын
Thank you very much! awesome way to make me understand ...keep it up...