Word Search

  Рет қаралды 139,182

Kevin Naughton Jr.

Kevin Naughton Jr.

Күн бұрын

For business inquiries email partnerships@k2.codes My Desk Setup
Desk - bit.ly/3jfY195
Chair - amzn.to/2O9TM3r
Monitor - amzn.to/3rcSHGa
Webcam - amzn.to/2NUmwgi
Desktop - amzn.to/3tiySPL
Laptops - amzn.to/3aRoN3Z
iPad - amzn.to/2LlJzzJ
Keyboard - amzn.to/3jfbxdd
Mouse - amzn.to/36ElWtT
Wrist Rest - amzn.to/3trrHF4 (pls don't buy this)
Mouse Pad - amzn.to/2Myz2lt
Microphone - amzn.to/3atNyTA
Lamp - amzn.to/3jjfZYp
Headphones - amzn.to/3tvr0KU (new model)
Headphone Hook - amzn.to/3tr8uTC
Blue Light Glasses - amzn.to/3cDVUdK
Wireless Charger - amzn.to/39LY1uu
Keyboard cable - amzn.to/2O5p2R5
Mic arm - amzn.to/3cECZj8
Audio interface - amzn.to/36HdWIi
Cloudlifter - amzn.to/36VO6kf
Laptop dock - amzn.to/2O2DsBw
Motherboard - amzn.to/3rkiWuA
Solid state - amzn.to/3rk5vuo
CPU cooler - amzn.to/3tnwwPA
CableMod - amzn.to/3tqbtM8
CPU - amzn.to/3auG1ns
Power supply - amzn.to/3trsAxo
RAM - amzn.to/39JZcuf
Designing Data-Intensive Applications - amzn.to/2YK4ek1
Clean Code - amzn.to/3txqfB5
Meditations - amzn.to/3cDa4fi
SOCIAL
----------------------------------------------------------------------------------------------------------------
Support me on Patreon: / kevinnaughtonjr
Follow me on Twitter: / kevinnaughtonjr
Follow me on Instagram: / kevinnaughtonjr
Follow me on GitHub: github.com/kdn251
MUSIC
----------------------------------------------------------------------------------------------------------------
Playboi Carti Magnolia Lofi Remix Prod.MAJORA by MAJORA✰
/ playboi-carti-magnolia...
#coding #interviews #softwareengineering Discord: bit.ly/K2-discord

Пікірлер: 267
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
WORD SEARCHES ARE FUUUUUUUN!!!!!
@SatyanarayanaGokavarapu
@SatyanarayanaGokavarapu 5 жыл бұрын
Hey can you add videos for Maximum subarray and word break , Longest Palindromic Substring
@shwetajaiswal7661
@shwetajaiswal7661 4 жыл бұрын
Hi, can you make a video for Word Ladder II? It would really be helpful.
@ryzen980
@ryzen980 4 жыл бұрын
Ya.....they sure are fun.......
@viren3399
@viren3399 3 жыл бұрын
@Kevin Naughton Jr. can you please make video on leetcode 139 word break problem ?
@rodanm
@rodanm 3 жыл бұрын
not if you leetcode everyday all day...
@vidzpk5144
@vidzpk5144 4 жыл бұрын
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
@KevinNaughtonJr
@KevinNaughtonJr 4 жыл бұрын
vidzpk anytime happy to hear it was helpful :)
@ashleywilkonson386
@ashleywilkonson386 3 жыл бұрын
Do the Rotting Oranges problem, this one is a DFS backtracking solution.
@FrankLi92
@FrankLi92 5 жыл бұрын
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.
@rishabhratan2925
@rishabhratan2925 4 жыл бұрын
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.
@chasethorpe4253
@chasethorpe4253 4 жыл бұрын
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.
@KevinNaughtonJr
@KevinNaughtonJr 4 жыл бұрын
Chase Thorpe anytime dude
@shrawanipampatwar3487
@shrawanipampatwar3487 4 жыл бұрын
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.
@shrawanipampatwar3487
@shrawanipampatwar3487 4 жыл бұрын
I was able to reuse the same Word Search solution and solve Word Search II, yay!
@shivanshgupta5657
@shivanshgupta5657 2 жыл бұрын
@@shrawanipampatwar3487 im stuck on it could you share your solution please
@shahnawazalam9939
@shahnawazalam9939 3 жыл бұрын
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.
@user-vc6gh5rc8t
@user-vc6gh5rc8t 9 ай бұрын
He clarified where n is the number of cells, which is = m*n or n^2
@swathir3014
@swathir3014 4 жыл бұрын
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. :)
@sihamebazi9795
@sihamebazi9795 3 жыл бұрын
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!!
@uselesvideo
@uselesvideo 4 жыл бұрын
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 ```
@jessiegu4853
@jessiegu4853 4 жыл бұрын
WOW! This is the best ever explanation of this kind of question! You rock Kevin!
@KevinNaughtonJr
@KevinNaughtonJr 4 жыл бұрын
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/
@shubamsharma5745
@shubamsharma5745 4 жыл бұрын
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
@johnlee416
@johnlee416 4 жыл бұрын
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
@anuragsrivastava6715
@anuragsrivastava6715 Жыл бұрын
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?
@abhishek-n-chaudhary
@abhishek-n-chaudhary 4 жыл бұрын
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?
@yashpreetbathla4653
@yashpreetbathla4653 4 жыл бұрын
You make code so easy man just love your videos !!
@KevinNaughtonJr
@KevinNaughtonJr 4 жыл бұрын
Thanks Yashpreet I really appreciate that!
@cgqqqq
@cgqqqq 2 жыл бұрын
even though i only know python, but I can still fully follow your way to solve and understand your code magically lol, gj bruh!
@meetnikhil719
@meetnikhil719 3 жыл бұрын
Great explanation. much appreciated if you give us the time complexity too!
@jayanthavasarala
@jayanthavasarala 5 жыл бұрын
Can't thank you enough for all you are doing. Keep it up!
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
Anytime Jayanth! Thank YOU for your support!!!
@Nobody2310
@Nobody2310 5 жыл бұрын
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?
@dimitrivasilev2905
@dimitrivasilev2905 4 жыл бұрын
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
@varunrao2931
@varunrao2931 4 жыл бұрын
@@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
@sushantkshirsagar
@sushantkshirsagar 4 жыл бұрын
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
@varunrao2931
@varunrao2931 4 жыл бұрын
sushant kshirsagar sure. But we can still approximate it’s O(n^2)
@sushantkshirsagar
@sushantkshirsagar 4 жыл бұрын
Got it Varun. Thanks. You are right
@travisc9436
@travisc9436 3 жыл бұрын
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.
@rccsrgaming6987
@rccsrgaming6987 2 жыл бұрын
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.
@rah7207
@rah7207 2 жыл бұрын
Perfect explanation
@anup9034
@anup9034 2 жыл бұрын
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) ?
@vishalbahedia6720
@vishalbahedia6720 5 жыл бұрын
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?
@NithinRajuChandy
@NithinRajuChandy 2 жыл бұрын
It’s usually the best solution. You should look at other solutions as well to get a good grasp of the problem.
@vishnurudhva4494
@vishnurudhva4494 3 жыл бұрын
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].
@maripaz5650
@maripaz5650 3 жыл бұрын
Quality explanation, you just be great at interviewing!
@rak590
@rak590 4 жыл бұрын
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.
@karenhuynh1355
@karenhuynh1355 4 жыл бұрын
count is incremented by 1 in the dfs calls
@knpatel86
@knpatel86 4 жыл бұрын
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 ?
@yashrat1
@yashrat1 5 жыл бұрын
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?
@Rajat-Sharma1
@Rajat-Sharma1 2 жыл бұрын
Thanks!! I was missing out on the point you mentioned at 5:57.
@varunrao2931
@varunrao2931 4 жыл бұрын
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.
@goodpeople7615
@goodpeople7615 4 жыл бұрын
He said that only but n in his way in total no of boxes in grid
@DmitrySinitsyn
@DmitrySinitsyn 5 жыл бұрын
Thank you, Kevin! As always awesome video and nice music on the background.
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
Thanks Dmitiry!!!
@shishirpandey7762
@shishirpandey7762 3 жыл бұрын
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
@sanatanshrivastava3777
@sanatanshrivastava3777 4 жыл бұрын
Hi Kevin, where did you learn this kind of recursive calls of dfs? It is insanely clear and awesome! Thanks a lot!!
@vtvtify
@vtvtify 4 жыл бұрын
Read the competitive programmer's handbook, free pdf (google). It contains alot of magically short inplementations, including this dfs style
@krithikaselvapathy9463
@krithikaselvapathy9463 3 жыл бұрын
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..
@aj9706
@aj9706 4 жыл бұрын
Thanks pls solve word ladder problem With deep *explanation*
@chaitanyawaikar382
@chaitanyawaikar382 3 жыл бұрын
Your explanation is so simple. Hats off. Thanks for the content
@shubhamgoyal1547
@shubhamgoyal1547 4 жыл бұрын
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?
@Arunk054
@Arunk054 2 жыл бұрын
This is the correct runtime
@ankitbhardwaj9566
@ankitbhardwaj9566 4 жыл бұрын
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
@narendramall78
@narendramall78 4 жыл бұрын
Thank you very much! awesome way to make me understand ...keep it up...
@ossamaa.7164
@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?
@aubame-bloodclut-zette6745
@aubame-bloodclut-zette6745 5 жыл бұрын
bro could you do a video on atlassian interview questions? Not cos I have have an interview there or anything haha ;)
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
Hahah I think a lot of the problems I've done will overlap so hopefully they're helpful in your preparation!!! :)
@algoseekee
@algoseekee 5 жыл бұрын
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.
@indiansoftwareengineer4899
@indiansoftwareengineer4899 5 жыл бұрын
Loved your all videos. Please keep posting frequently. Thank you for all your efforts on videos.
@sharmilabaskaran7373
@sharmilabaskaran7373 4 жыл бұрын
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.
@KevinNaughtonJr
@KevinNaughtonJr 4 жыл бұрын
thanks so much and put in the work and I'm sure you will!!!
@guitarvoicing
@guitarvoicing Жыл бұрын
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 :)
@atulchavan4330
@atulchavan4330 4 жыл бұрын
thanks Kevin, understood very well. I am preparing for FANG with your videos.
@chaitu2037
@chaitu2037 4 жыл бұрын
Clean and easy to understand!
@ajourney179
@ajourney179 4 жыл бұрын
if(word[cnt] != board[i][j]) very crucial case to avoid tle.
@srishtichadha7162
@srishtichadha7162 4 жыл бұрын
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.
@powerlifter1450
@powerlifter1450 3 жыл бұрын
Is there any way to combine the search for the first character into the main recursive function ?
@rohanreddymelachervu3498
@rohanreddymelachervu3498 2 жыл бұрын
Can't thank you enough for everything you're doing!!
@shivanib4723
@shivanib4723 2 жыл бұрын
James Gosling, Mike Sheridan and Patrick "Naughton" initiated the Java Lang project I got to know why ur genius man !!!😜😛
@atift5465
@atift5465 5 жыл бұрын
Awesome! Thanks so much for doing this!
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
Anytime Atif! :)
@saulgoodman980
@saulgoodman980 3 жыл бұрын
In the if condition you can directly call dfs, the other check is redundant
@akshayavenkatesan2912
@akshayavenkatesan2912 4 жыл бұрын
You are tooo good at what u r dng ! ❤ Love from India
@pravesh8187
@pravesh8187 5 жыл бұрын
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
@shtephl354
@shtephl354 4 жыл бұрын
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.
@jasonvazquez-li8264
@jasonvazquez-li8264 4 жыл бұрын
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.lyyyyle
@kel.lyyyyle 3 жыл бұрын
you are going through all neighbors until you're out of bounds or your count == length whichever comes first. That's DFS
@pawankumargubbala8943
@pawankumargubbala8943 3 жыл бұрын
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-fg4fj
@paramjitsingh-fg4fj 3 жыл бұрын
Hey what about the time complexity? Is O(n*m) correct?
@felixcuello
@felixcuello 4 жыл бұрын
Perfect explanation at a perfect pace.
@KevinNaughtonJr
@KevinNaughtonJr 4 жыл бұрын
Félix Cuello thanks!!!
@InfluentialStudios
@InfluentialStudios 5 жыл бұрын
Thanks for the tips! Seems like a much more efficient way than what I would have done.
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
Haha anytime Nick!!
@Makwayne
@Makwayne 2 жыл бұрын
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
@tarekadel7631
@tarekadel7631 4 жыл бұрын
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?
@ivankorostelev9591
@ivankorostelev9591 3 жыл бұрын
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).
@Arunk054
@Arunk054 2 жыл бұрын
@@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.
@michelagediminas7295
@michelagediminas7295 3 жыл бұрын
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.
@aravjitsachdeva4077
@aravjitsachdeva4077 3 жыл бұрын
I thought I was the only one haha.
@fabusuyiayodeji7016
@fabusuyiayodeji7016 3 жыл бұрын
Awesome explanation!
@klsajdklajldkadad
@klsajdklajldkadad 4 жыл бұрын
Why do you need to add the 'temp' letter back after the recursive calls?
@DatGuyWhoComments
@DatGuyWhoComments 4 жыл бұрын
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.
@augustoglez
@augustoglez 4 жыл бұрын
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.
@apoorvwatsky
@apoorvwatsky 4 жыл бұрын
@@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.
@cosmicdust2192
@cosmicdust2192 4 жыл бұрын
@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.
@vtvtify
@vtvtify 4 жыл бұрын
@@DatGuyWhoComments no, you do need to. Read this thread.
@AKASH-sw9bs
@AKASH-sw9bs 4 жыл бұрын
couldn't understand it from nick white's video .. but your one was very helpful .. thanks brother for such a good explanation .
@KevinNaughtonJr
@KevinNaughtonJr 4 жыл бұрын
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
@nandinisraghavan8788
@nandinisraghavan8788 2 жыл бұрын
Why are we returning boolean found ? like what is it calculating ?
@IldarIsm
@IldarIsm 2 жыл бұрын
It is genius to blank the letter to prevent the returning.
@SammyTvMan
@SammyTvMan 2 жыл бұрын
Great explanation and great video quality, keep it up man
@mashab9129
@mashab9129 3 жыл бұрын
had a similar question with amazon today - they asked to find all words in a matrix.
@jatinthakwani5370
@jatinthakwani5370 3 жыл бұрын
Can we optimize this solution by using dp?
@christopherkim7762
@christopherkim7762 2 жыл бұрын
What is the purpose of saving the word and replacing it?
@charlesbickham6604
@charlesbickham6604 4 жыл бұрын
Can someone please explain to me how that boolean found calls recursively works? I understand how it is called but it does not connect how it will return true for me. Thank you.
@saiamarnathchintha3877
@saiamarnathchintha3877 4 жыл бұрын
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
@joekurokawa5021
@joekurokawa5021 3 жыл бұрын
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 ?
@RahulSaini-vs6fs
@RahulSaini-vs6fs 3 жыл бұрын
I am using the same algo in c++ bit it's showing time exceed limit
@amanvashistha984
@amanvashistha984 3 жыл бұрын
The same code in C++ is 570ms! Have you done any optimization?
@kafon6368
@kafon6368 3 жыл бұрын
He edited it, his code is not 4ms
@algorithmimplementer415
@algorithmimplementer415 5 жыл бұрын
@Kevin Naughton Jr. Pretty amazing. Thanks for uploading such videos. I can see some improvement in my own coding after watching the videos. There is one problem called Android Unlock pattern (maybe asked in Google) which is similar to this, I guess. If you get some time, maybe you can make a video on that. :)
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
Anytime, I'm happy to hear the videos are helping you! I'll throw that problem on my list and see what I can do :)
@sajalsingh7768
@sajalsingh7768 4 жыл бұрын
Always gives best explanations, keep it up
@praveenchouhan6388
@praveenchouhan6388 3 жыл бұрын
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
@dhruvphansalkar1475
@dhruvphansalkar1475 2 жыл бұрын
Can anyone explain why we need to set the current space on the board to empty?
@jlecampana
@jlecampana 5 жыл бұрын
Hello Kevin. This one I suggested a couple of times, Thank you for solving it! BTW (and this is before watching the video) if I couldn't solve this one, Which topic Do you think I should strengthen? Thanks again Mr. Naughton Jr.
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
Anytime! I would def check out more graph problems then that focus on BFS / DFS!
@jlecampana
@jlecampana 5 жыл бұрын
Kevin Naughton Jr. Thank you very much Kevin, I'll enjoy the video now 😎
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
@@jlecampana Always happy to help :) thanks for your support as always!
@jlecampana
@jlecampana 5 жыл бұрын
Kevin Naughton Jr. It's the least I can do. I've been thinking about becoming a patreon of yours soon. I think I'll definitely do it in some time from now, so that you can do a mock interview with me.
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
@@jlecampana I'd love to see you as a Patron! I'd love to do a mock interview with you! :)
@willturner3440
@willturner3440 3 жыл бұрын
You are god, you makes things easy 🤗
@ethanengland6186
@ethanengland6186 2 жыл бұрын
How do you know when to use DFS over BFS?
@fancytseng
@fancytseng 4 жыл бұрын
Thank you!
@yaminchoudhury8732
@yaminchoudhury8732 3 жыл бұрын
bro you are a fucking legend thank you so much, hope your having a great day man
@KevinNaughtonJr
@KevinNaughtonJr 3 жыл бұрын
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!
@mohakchaudhary1981
@mohakchaudhary1981 5 жыл бұрын
Is it needed to restore the value of board[i][j]??
@KrishnaKanchibhatta
@KrishnaKanchibhatta 3 жыл бұрын
Yes, since it might be part of a different combination.
@blasttrash
@blasttrash 5 жыл бұрын
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.
@KevinNaughtonJr
@KevinNaughtonJr 5 жыл бұрын
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!
@blasttrash
@blasttrash 5 жыл бұрын
@@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.
@GEhehloopf
@GEhehloopf 4 жыл бұрын
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?
@alammahtab08
@alammahtab08 4 жыл бұрын
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
@shardulkhadye5875
@shardulkhadye5875 3 жыл бұрын
This solution is giving a TLE now , any suggestions to optimize this code ?
@madhavchaturvedi4654
@madhavchaturvedi4654 3 жыл бұрын
Well done mate.Great explaination
@animeshbhatt2937
@animeshbhatt2937 4 жыл бұрын
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;
@snehashischattopadhyay9519
@snehashischattopadhyay9519 4 жыл бұрын
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?
@tanmaybhatt6980
@tanmaybhatt6980 4 жыл бұрын
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.
@snehashischattopadhyay9519
@snehashischattopadhyay9519 4 жыл бұрын
@@tanmaybhatt6980 thank you!
@shreyamduttagupta7527
@shreyamduttagupta7527 4 жыл бұрын
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!
@preethiraajaratnam6399
@preethiraajaratnam6399 4 жыл бұрын
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!
@maganaluis92
@maganaluis92 4 жыл бұрын
I think you missed to explain a huge point in this code. What is the purpose of the temp variable.
@aj9706
@aj9706 4 жыл бұрын
to restore the value temp is used.
@Marc-sf2xr
@Marc-sf2xr 4 жыл бұрын
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.
@siobhanahbois
@siobhanahbois 4 жыл бұрын
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.
@karenhuynh1355
@karenhuynh1355 4 жыл бұрын
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-sf2xr
@Marc-sf2xr 4 жыл бұрын
@@karenhuynh1355 Yes, it is important to consider call stack in the space complexity, I didn't know that back then :)
@sidn515
@sidn515 4 жыл бұрын
redundant check at line 5 : board[i][j] == word.charAt(0)
@satyam3993
@satyam3993 2 жыл бұрын
You guys are straight up jumping into the code :( How/What do you "THINK" when you see these kinda problems?
@user-yx3tc2ru3y
@user-yx3tc2ru3y 3 жыл бұрын
How about if we put all the words we need to search in Trie and run dfs on board
@PramodRj
@PramodRj 2 жыл бұрын
I have 111ms and you have 4ms as runtime. Not to mention i exactly have the same code.
@AshwinKumar-ds5ip
@AshwinKumar-ds5ip 4 жыл бұрын
Why do we have to remember and restore the cell value at each recursion?
@bhargavacharan2262
@bhargavacharan2262 4 жыл бұрын
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
@90krishika
@90krishika 4 жыл бұрын
Best video for leetcode 79 in the youtube world
@SudhanshuKumar-lp1nr
@SudhanshuKumar-lp1nr 3 жыл бұрын
Can somebody explain that after marking a character visited with " ", why are we again putting its original value back to it.
@dipleshmankape9672
@dipleshmankape9672 3 жыл бұрын
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)
@eugenevedensky6071
@eugenevedensky6071 3 жыл бұрын
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-lp1nr
@SudhanshuKumar-lp1nr 3 жыл бұрын
@@eugenevedensky6071 thanks mate
@SudhanshuKumar-lp1nr
@SudhanshuKumar-lp1nr 3 жыл бұрын
@@dipleshmankape9672 thanks understood 🥰🥰
An Entire Computer Science Degree in 11 Minutes
11:13
Kevin Naughton Jr.
Рет қаралды 747 М.
House Robber
7:32
Kevin Naughton Jr.
Рет қаралды 84 М.
Did you believe it was real? #tiktok
00:25
Анастасия Тарасова
Рет қаралды 56 МЛН
🤔Какой Орган самый длинный ? #shorts
00:42
WHO LAUGHS LAST LAUGHS BEST 😎 #comedy
00:18
HaHaWhat
Рет қаралды 20 МЛН
Reorganize String
12:44
Kevin Naughton Jr.
Рет қаралды 77 М.
I Flew 2,901 Miles to Fail All My Tech Interviews
7:45
Kevin Naughton Jr.
Рет қаралды 17 М.
Unique Paths
7:07
Kevin Naughton Jr.
Рет қаралды 60 М.
The HARSH Reality of Working in Big Tech
8:42
Kevin Naughton Jr.
Рет қаралды 20 М.
We Need to Rethink Exercise - The Workout Paradox
12:00
Kurzgesagt – In a Nutshell
Рет қаралды 751 М.
WORD SEARCH | LEETCODE 79 | PYTHON DFS SOLUTION
18:54
Cracking FAANG
Рет қаралды 3,1 М.
Fruit into Baskets
12:43
Kevin Naughton Jr.
Рет қаралды 72 М.
The Algorithm Behind Spell Checkers
13:02
b001
Рет қаралды 407 М.
Spiral Matrix
10:16
Kevin Naughton Jr.
Рет қаралды 45 М.
I solved 541 Leetcode problems. But you need only 150.
7:42
Sahil & Sarra
Рет қаралды 2,3 МЛН
Хотела заскамить на Айфон!😱📱(@gertieinar)
0:21
Взрывная История
Рет қаралды 6 МЛН
Как распознать поддельный iPhone
0:44
PEREKUPILO
Рет қаралды 1,7 МЛН
Сколько реально стоит ПК Величайшего?
0:37