Great tutorial! Can you please make a video about the following interview question: Implementing autocomplete? I think you need to use a trie data structure.
@ByteByByte8 жыл бұрын
that sounds really interesting actually. thanks for the suggestion
@amellperalta8 жыл бұрын
Thanks.
@tanthole03063 жыл бұрын
this video is awesome. Thank you for the detailed explanation.
@revdevstudios6 жыл бұрын
Beautiful job. This is really well done to help me improve in the interview process. Thanks!
@ByteByByte6 жыл бұрын
That's awesome!
@mcreyfonacier19825 жыл бұрын
Is it fine to ask the interviewer to add "List neighborList" in the data structure, instead of 2d array?
@guardianangel45144 жыл бұрын
Could we use Kahs algorithm for this?
@mayankmicky58 жыл бұрын
thank you, life saviour ....can you plz make a video on Finding loop in a linked list
@ByteByByte8 жыл бұрын
you're welcome! and sure, I'll take a look at that
@Pooja_and_Abhay6 жыл бұрын
Amazing !! What an explanation :) :)
@ByteByByte6 жыл бұрын
thanks!
@vishalgawade945 жыл бұрын
Can’t we just return permMarks set,instead of keeping one more set results!
@TheNoNameUsername5 жыл бұрын
if im not mistaken, set doesn't guarentee the order of which you add elements like list does, and in this problem the end result relies on the order of which you add the processes
@vishalgawade945 жыл бұрын
Yup, you are right.That makes sense.Thanks a lot!
@shilpita877 жыл бұрын
Is this topological sort?
@ByteByByte7 жыл бұрын
yep
@Gerald-iz7mv2 жыл бұрын
@@ByteByByte can you use a queue and do it iteratively too or a stack?
@karthikk58956 жыл бұрын
Nice explanation! Which keyboard do you use?
@ByteByByte6 жыл бұрын
I have a Das mac keyboard with blues
@scarrevision63714 жыл бұрын
should 2 be pointing to 1 and not 0 based on the example you provided
@Abhishek-gl2pd6 жыл бұрын
at 21.45 why are we starting at 3 when i is iterating from 0??
@ByteByByte6 жыл бұрын
We're just testing that it works for some arbitrary input iirc
@Abhishek-gl2pd6 жыл бұрын
Okay Thank you, please keep making these videos its very helpful while interview prep.
@Bhavya04098 жыл бұрын
Great videos as always! Question: In an interview, when you're stressed and pressed for time, is it ok if you just find a solution, even if its not very good? Like, I can find simple solutions (like either the first or second solution you suggest in every video) but I'm literally never able to find the best solution. Is that fine?
@ByteByByte8 жыл бұрын
Absolutely. That's always the best place to start and then you can also try to optimize your solution from there if you have time. Check out this post I wrote: www.byte-by-byte.com/brute-force/
@krish00075 жыл бұрын
awesome
@jaydipbarvaliya3 жыл бұрын
I had skipped plethora of problem which is similiar to that., However after watching your tutorials and mainly this tutorial, my interest towards DS & Algo is really really escalating..
@vibekdutta65395 жыл бұрын
Sir, you're gr8, but I think there's some bug, I don't know if there is but please Sir could you please video conference with me on Skype or anything, I really want to learn coz I have some questions, I would really appreciate that, a big fan of your book and channel.
@vibekdutta65395 жыл бұрын
The code surely works, but there are some duplicate values like 0,1,0,2,0,1......
@AbhriyaRoy5 жыл бұрын
Hi your algo wont work if there are multiple nodes without any dependencies.
@ca35025 жыл бұрын
dynamic programming better than recursion
@ihopethiscommentisntabusiv46704 жыл бұрын
Thanks for the video but instead of saying "Go research topo sort on your own" over and over again, it'd be more helpful if you explained it. Thats the point of people watching your video.