ROBOT ROOM CLEANER | LEETCODE # 489 | PYTHON BACKTRACK SOLUTION

  Рет қаралды 11,268

Cracking FAANG

Cracking FAANG

Күн бұрын

Пікірлер: 30
@zongjunliu7211
@zongjunliu7211 2 жыл бұрын
This is so far the best walk through for 489.
@yynnooot
@yynnooot 8 ай бұрын
I don’t get why you would turn right on line 32 after the goBack. You are already going in every direction when you for loop through the 4 directions.
@ByteVenture
@ByteVenture 8 ай бұрын
There is a little bit of intution that is involved. Consider the following example and this would make it much more clear. (Because I had the same thought as you) Let's say the robot is facing upwards and wants to move to the next part of the dfs call. (UP -> RIGHT -> DOWN -> LEFT, in this clockwise order) So, looping through the directions array and finding the next direction is a way to find the coordinate of the new direction that the robot eventually wants to go, but as the robot can ONLY move in the direction it is facing, we have to take a right turn before calling move in the loop. I hope this explains the situation. Let me know if you still have questions.
@ferbot123
@ferbot123 18 күн бұрын
The 4 directions in the for loop are for our reference to store in the visited array. The robot doesn't move based on coordinates, it moves based on where it is pointing to, that's why we turn it at every step.
@seant11
@seant11 4 ай бұрын
Can you explain the intuition behind how one would figure out why a normal DFS (where you loop through directions) wouldn't work and instead need to setup the i % 4 step?
@rsKayiira
@rsKayiira 2 жыл бұрын
This is a really difficult problem but you explained it well and thoroughly. I dont think I would be able to remember how to solve this or able to solve it in time during an interview though
@crackfaang
@crackfaang 2 жыл бұрын
As long as you understand the intuition, this is one you can basically memorize if you are having trouble remembering the code
@rsKayiira
@rsKayiira 2 жыл бұрын
@@crackfaang gotcha. This is the best solution to the problem out there So I'll memorize it. One issue I'm facing is the top meta questions keep changing. So it's going to be a challenge.
@crackfaang
@crackfaang 2 жыл бұрын
@@rsKayiira You're worrying about nothing here if I have to be honest. The questions may move up and down the rankings but it's all largely the same. Maybe down past like the top 120 there's movement but those are so infrequently asked that even 1 person reporting they got it in an interview will make it shoot up the rankings. If you look at Meta's questions they are basically all Mediums/Easies. With Meta the question selection is very easy but you are expected to solve two questions and breakdown the problem and communicate your thoughts clearly. I'd focus more on mastering the top 75 and being able to explain them perfectly out loud before starting to worry about anything lower down on the list. Knowing questions from 75-150 is more of an insurance policy against getting some random question.
@rsKayiira
@rsKayiira 2 жыл бұрын
@@crackfaang Okay got it thank you!! Looking forward to more content.
@square-kstudios9561
@square-kstudios9561 7 ай бұрын
@@crackfaang What are the odds that I solved 300 of the 310 Meta questions and I got 2 questions outside of this list of 300? My luck is such, that I got 1 question from the remaining 10 that I did not prepare for, and the other was not even on leetcode.
@pria_xoxo
@pria_xoxo 10 ай бұрын
What an explanation! Thank you for this!
@cindysu262
@cindysu262 2 жыл бұрын
Thank you for much for making videos for these hard questions!!!
@crackfaang
@crackfaang 2 жыл бұрын
No problem! Subscribe so you don’t miss future videos
@kostyaverein5258
@kostyaverein5258 2 жыл бұрын
At the end, because of go_back, Robot will return to its original position, right?
@shrutimistry2086
@shrutimistry2086 4 ай бұрын
why do you turn right after the loop? aren't you going to visit all directions regardless?
@carefree_ladka
@carefree_ladka 2 ай бұрын
Needs to go to right direction after coming back to original direction.
@geekydanish5990
@geekydanish5990 2 жыл бұрын
I think in your directions array you are starting from all the way left then up,right,down its still a clockwise movement
@komalgujarathi8900
@komalgujarathi8900 2 жыл бұрын
That's right. Direction starts from left in clock wise manner.
@sumeetkamat
@sumeetkamat 3 ай бұрын
thank you! I was so confused as to how (-1,0) is up.
@ronakshah725
@ronakshah725 2 ай бұрын
That’s not the right explanation, -1,0 in the directions is the differential to go up. Since you’re reducing the row on the same column, you will travel up if you add this direction to your position ( differential )
@VerghisKoshi
@VerghisKoshi Жыл бұрын
Very nice work.
@oitejjhoamlan6022
@oitejjhoamlan6022 9 ай бұрын
amazing explanation!!! thanks lot
@mashareznik4117
@mashareznik4117 6 ай бұрын
Thank you!
@eddiej204
@eddiej204 2 жыл бұрын
Thanks ser
@dabaaku
@dabaaku 4 ай бұрын
directions = [(-1, 0), (0, 1), (1, 0), (0, -1)] are (left, up, right, down) and not those mentioned in the code but I have seen solutions with incorrect direction comment on multiple sites :( unfortunately lot of folks are simply restating same mistaken explanation without understanding
@dmitricherleto8234
@dmitricherleto8234 3 ай бұрын
I think it's (row, col) not (x, y) so it is correct
@marjanramin1769
@marjanramin1769 5 ай бұрын
Both time and space complexity are exponential in backtracking.
@crackfaang
@crackfaang 5 ай бұрын
No that's not always true. In this case it's not and the complexity is O(N-M). You can check the Leetcode solution if you don't believe me
MAKING A LARGE ISLAND | LEETCODE # 827 | PYTHON SOLUTION
22:09
Cracking FAANG
Рет қаралды 8 М.
Players push long pins through a cardboard box attempting to pop the balloon!
00:31
Симбу закрыли дома?! 🔒 #симба #симбочка #арти
00:41
Симбочка Пимпочка
Рет қаралды 5 МЛН
How To Choose Mac N Cheese Date Night.. 🧀
00:58
Jojo Sim
Рет қаралды 97 МЛН
Turn Off the Vacum And Sit Back and Laugh 🤣
00:34
SKITSFUL
Рет қаралды 7 МЛН
Robot Room Cleaner | Leetcode 489 | DFS & Backtracking | HARD
14:50
Arpan Pathak
Рет қаралды 1,3 М.
DIAGONAL TRAVERSE | LEETCODE # 498 | PYTHON SOLUTION
12:57
Cracking FAANG
Рет қаралды 13 М.
ACCOUNTS MERGE | LEETCODE # 721 | PYTHON SOLUTION
23:04
Cracking FAANG
Рет қаралды 12 М.
Максим Галкин  - Про политику без цензуры
15:31
Максим Галкин. Без цензуры
Рет қаралды 41 М.
EXCLUSIVE TIME OF FUNCTIONS | LEETCODE 636 | PYTHON SOLUTION
15:42
Cracking FAANG
Рет қаралды 6 М.
Robot Room Cleaner (LeetCode 489 - Hard)
24:56
TechMockInterview
Рет қаралды 4,9 М.
Leetcode 753. Cracking the Safe
27:44
Elite Code
Рет қаралды 3,1 М.
[Java] Leetcode 489. Robot Room Cleaner [Backtracking #14]
14:10
Eric Programming
Рет қаралды 6 М.
VALID NUMBER | LEETCODE #65 | PYTHON SOLUTION
18:18
Cracking FAANG
Рет қаралды 6 М.
Players push long pins through a cardboard box attempting to pop the balloon!
00:31