Love your algorithm explanations! Keep it going :)
@FisherCoder4 жыл бұрын
Glad you like them! Will do!
@GorgeousPureeАй бұрын
Great explanation, I rewatched this video few times to finally understand this algo... Wouldn't it be more efficient to create topoMap and instead of iterating through every prerequisite in the while loop, iterate only through courses that are children of the currently iterated course?
@harshavardhanm70913 жыл бұрын
thank you so much, very clearly explained
@FisherCoder3 жыл бұрын
Glad it was helpful!
@shauryabavishi38743 жыл бұрын
It is really helpful video, explained in easy manner!
@FisherCoder3 жыл бұрын
Glad it was helpful!
@warzone77414 жыл бұрын
thanks, clear explanation and slides.
@FisherCoder4 жыл бұрын
Glad it was helpful!
@navinkachhela71713 жыл бұрын
thank you so much
@FisherCoder3 жыл бұрын
You're welcome!
@aamirjamal68334 жыл бұрын
Thanks! Subscribed! 😊
@FisherCoder4 жыл бұрын
Awesome! Thank you!
@The8merp4 жыл бұрын
Good video, just wish it was edited to make it shorter, perhaps by cutting out some of the example explanations such as at 2:30 and 4:47. The video just drags at these points. Also adding some timestamps to the video for the various sections would help people quickly navigate to the part of the video they care about.
@FisherCoder4 жыл бұрын
Good call!
@nimanizky4 жыл бұрын
Great tutorial, You should do thia tutorial for another algo such as dp or backtracking
@FisherCoder4 жыл бұрын
Thanks, will do!
@kma11383 жыл бұрын
GOATED
@toekneema4 жыл бұрын
Great explanation! I have one question though, can you describe a situation when there will be left over indegrees: I don't really understand when that will ever happen. Seems like as long as it's not a cycle, all the edges should be able to be visited so all the indegrees would be 0 at the end
@skuller12253 жыл бұрын
I have the same question
@shawnx78062 жыл бұрын
if there is a left over indegree that means there is some kind of cycle in the graph right? I am new to this as well
@rydmerlin Жыл бұрын
Is it significant to get the iterator every time thru the while?
@RohitSharma-ji2qh2 жыл бұрын
is it ideal to store courses indegree in array when constraint for courses are 10^5. In worst case, we need to store 10^5 courses indegrees.