Freedom Trail - Leetcode 514 - Python

  Рет қаралды 14,498

NeetCodeIO

NeetCodeIO

Күн бұрын

Пікірлер
@siddharth-gandhi
@siddharth-gandhi 8 ай бұрын
bro single handedly saving my streak. thanks for doing this :)
@yang5843
@yang5843 8 ай бұрын
These problem descriptions are getting out of hand
@vjnt1star
@vjnt1star 8 ай бұрын
I agree, a couple of months ago I was looking for a job and I was given some leetcode problems to solve. The description was very long and I had to read it a couple of times because it was going all over the place. After a while focusing on the example the things to do was not so complicated. But my god so much time wasted on blabla when the timer is running down at the same time
@anand_dudi
@anand_dudi 8 ай бұрын
Only channel on whole youtube which is best not just solving leetcode problems but also to explaining the problem as much as simple possible with many approaches DAMM
@huyennguyenmaingoc468
@huyennguyenmaingoc468 8 ай бұрын
Thank you Neetcode, I learned Algorithm from your series by watching the whole Medium playlist. Now I passed my Codility test and got the first internship, which I thought I couldn't 2 months ago XD
@chaitanya812
@chaitanya812 8 ай бұрын
another problem with dp vs greedy ... where greedy fails
@williamdufault6413
@williamdufault6413 8 ай бұрын
python 80ms - recursion + memoization + binary search class Solution: def findRotateSteps(self, ring: str, key: str) -> int: @cache def dfs(r: int, k: int) -> int: if k == len(key): return 0 steps = math.inf for i in get_closest_indexes(r, key[k]): steps = min(steps, get_min_distance(r, i) + dfs(i, k + 1)) return 1 + steps def get_closest_indexes(i: int, char: str) -> Tuple[int]: if ring[i] == char: return (i,) char_indexes = indexes[char] if len(char_indexes) == 1: return tuple(char_indexes) l, r = 0, len(char_indexes) - 1 while l < r: m = l + (r - l) // 2 if char_indexes[m] < i: l = m + 1 else: r = m - 1 return ( char_indexes[l], char_indexes[l - 1] if char_indexes[l] > i \ else char_indexes[(l + 1) % len(char_indexes)] ) def get_min_distance(i: int, j: int) -> int: diff = abs(i - j) return min(diff, len(ring) - diff) indexes = defaultdict(list) for i, char in enumerate(ring): indexes[char].append(i) return dfs(0, 0)
@SaiPreethamDasari
@SaiPreethamDasari 8 ай бұрын
For the recursive solution with memoization, although it makes the code a little messier, you don't really need to consider all possible occurrences of a particular key character in the ring. Finding the first occurrence of the required character towards the left and the right and then recursively solving the rest of the problem is also adequate! But yeah great solution that helped me save my streak! Keep writing more neet code! :D
@swamysriman7147
@swamysriman7147 8 ай бұрын
No, that would be greedy and we'd miss better, but further positions
@yassine-sa
@yassine-sa 8 ай бұрын
I just saw now that this is the same problem we'll have to solve if we tried to type a string using a wheel that contains letters if we have the same mechanism as the those old phone wheels, the only difference is that phone wheels has has only numbers and they appear only once, this is a more general situation
@thefreemarketdev
@thefreemarketdev 7 ай бұрын
The DP drawing is very helpful
@Munchen888
@Munchen888 8 ай бұрын
Neetcode, thank you for detailed explanation specially when using recursion. A decision tree really helps to divide and conquer the problem. By the way dp solution are better. Thanks 😊
@raghavrathi2412
@raghavrathi2412 8 ай бұрын
Please do yesterday's daily question i.e sum of distances in a tree, it seems like a really good question
@IK-xk7ex
@IK-xk7ex 8 ай бұрын
I recognise that it is DP problem, but I get stuck at the moment how to find circular offset, blain on me. After the moment you get the explanation I solved it by myself.
@MP-ny3ep
@MP-ny3ep 8 ай бұрын
Phenomenal explanation as always. Thank you
@tanzeembelal3177
@tanzeembelal3177 8 ай бұрын
Please solve contest problems for leetcode it will be so beneficial your quality of explanation is what we want please please please
@get_out_it
@get_out_it 8 ай бұрын
I’m adept at problem solving complex technical issues)
@hida-steak-donburi
@hida-steak-donburi 8 ай бұрын
Whoelse came up with Greedy solution and got suboptimal like me...
@aswathchandrasekar2917
@aswathchandrasekar2917 8 ай бұрын
Really good!!!!
@yassine-sa
@yassine-sa 8 ай бұрын
Am I supposed to have a solution that works from the first try "normally"? because I always write a solution that works for basic cases and then I start finding bugs I didn't see after submitting the thing, I think that's because I don't completely see what my code is doing until I get a hint by the failed submissions that probably this part isn't working, how do you guys deal with this? is it just me or it's about me not trying to go over the code again and again to try and catch bugs before submitting the solution, if that's the case, is it really what should happens when coding in real life situations?
@sheersendughosh
@sheersendughosh 8 ай бұрын
Thanks for the solution! If we come up with the caching solution and not the best optimal approach is it considered bad in an real interview? Can you kindly show/share code snippet for both caching solution and the optimal sol that you would do in a real FAANG interview? Love your videos❤
@satyamjha68
@satyamjha68 8 ай бұрын
Solved it!!
@johnrivers9931
@johnrivers9931 8 ай бұрын
this was a pretty cool problem
@ashrafuldowla6214
@ashrafuldowla6214 8 ай бұрын
recursive 2state dp with memoization
@tawfikkoptan5781
@tawfikkoptan5781 8 ай бұрын
PLEASE SOLVE TODAY'S CONTEST'S PROBLEM "Find All Possible Stable Binary Arrays I" BECAUSE IT WAS SO SO DIFFICULT 😭😭😭😭
@diasutsman
@diasutsman 8 ай бұрын
Bro the video embed in your courses are not working
@betabias
@betabias 8 ай бұрын
"wanna spend your life doing that" xD, tabulation gives me nightmares
@soumyajitchatterjee5822
@soumyajitchatterjee5822 8 ай бұрын
I need to practice more......
@nikhil199029
@nikhil199029 8 ай бұрын
21:45 Martin Fowler wants to know your location.
@shahnawazhussain4925
@shahnawazhussain4925 8 ай бұрын
Hii. I have a request. Please make a video on the problem "1915: Number of wonderful substrings". No matter how hard i try i could not understand the logic. I watch your videos and i think you can explain it to me. And i am pretty sure i will understand if you make a video on this problem. Please take it as a request. Thanks. love your videos
@benmaduabuchi1636
@benmaduabuchi1636 8 ай бұрын
solved it w a heap and it worked 💀
@wytsai7660
@wytsai7660 8 ай бұрын
4:55 Sorry, but I still can’t see why trying every characters (those three 'b's) won’t make our solution more inefficient 😢 Can somebody explain to me 🙏
@Kauliflower-yl8te
@Kauliflower-yl8te 8 ай бұрын
To understand recursion you must first understand recursion
@pastori2672
@pastori2672 8 ай бұрын
btw in python you can just do res = inf or -inf its a shorter then float("inf")
@deadlyecho
@deadlyecho 8 ай бұрын
Vault-tec 😂😂😂
@Mayanksingh-qp6dy
@Mayanksingh-qp6dy 8 ай бұрын
I have a question would be thankful if someone can please explain. In recursive solution if c == key[k] min_dist = min(abs(r-i), len - abs(r-i)) why are we taking this minimum instead of trying out both the solutions, as taking the minimum won't make this approach greedy?
@LOKESHE-wi2yd
@LOKESHE-wi2yd 8 ай бұрын
same doubt here , if the distance may decrease upon upcoming key values as he mentioned in 2:57 , why using greedy , i haven't watched full video yet , did he changed it in tabulation part
@LOKESHE-wi2yd
@LOKESHE-wi2yd 8 ай бұрын
gotcha , he selecting the minimum upon each recursive calls at line15 at timestamp 13:39
@transient6366
@transient6366 8 ай бұрын
in desperate need for a good solution of 1915. Number of Wonderful Substrings cant find anywhere
@deadlyecho
@deadlyecho 8 ай бұрын
Wouldn't it be easier if we concatenated the string with itself to make the recurssive solution easier ?
@ashrafuldowla6214
@ashrafuldowla6214 8 ай бұрын
you don't need to concatenate the string. try to find the distance between two indices both clockwise and anti-clockwise.
@deadlyecho
@deadlyecho 8 ай бұрын
@@ashrafuldowla6214 Yeah maybe, I just thought we could make it easier by doing this concat, didn't try it though
@yuvrajmalhotra9276
@yuvrajmalhotra9276 8 ай бұрын
what do u mean by easier ? r u trying to get rid of that formula to find distance if we move anticlockwise ? if this is tru then why stake all that space and you also have to write extra code.. just use a simple formula i.e key.size-absolute(nextPos-currentClockHand)
@ashrafuldowla6214
@ashrafuldowla6214 8 ай бұрын
@@yuvrajmalhotra9276 i did the same thing using the formula. I just only explained elaborately
@deadlyecho
@deadlyecho 8 ай бұрын
@@yuvrajmalhotra9276 Yes, well twice the length of the string is not so bad 2*N after all... didn't try how it will work out though just an idea
@pushkarsaini2
@pushkarsaini2 8 ай бұрын
where are you man?? 2 days no solutions
Minimum Cost to Hire K Workers - Leetcode 857 - Python
19:01
NeetCodeIO
Рет қаралды 15 М.
Student Attendance Record II - Leetcode 552 - Python
27:10
NeetCodeIO
Рет қаралды 10 М.
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
小丑女COCO的审判。#天使 #小丑 #超人不会飞
00:53
超人不会飞
Рет қаралды 16 МЛН
Longest Ideal Subsequence - Leetcode 2370 - Python
28:02
NeetCodeIO
Рет қаралды 12 М.
K Inverse Pairs Array - Leetcode 629 - Python
29:44
NeetCodeIO
Рет қаралды 17 М.
Find the Safest Path in a Grid - Leetcode 2812 - Python
26:40
NeetCodeIO
Рет қаралды 15 М.
The Only Database Abstraction You Need | Prime Reacts
21:42
ThePrimeTime
Рет қаралды 230 М.
Making an Algorithm Faster
30:08
NeetCodeIO
Рет қаралды 181 М.
Mastering Dynamic Programming - How to solve any interview problem (Part 1)
19:41
Distribute Coins in Binary Tree - Leetcode 979 - Python
17:41
NeetCodeIO
Рет қаралды 17 М.
Arithmetic Slices II - Leetcode 446 - Python
21:19
NeetCodeIO
Рет қаралды 17 М.
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 536 М.
Что-что Мурсдей говорит? 💭 #симбочка #симба #мурсдей
00:19