If you prefer fully animated algorithm videos over classroom style of explanations, let me know and I will do future algo videos accordingly.
@snehgupta18143 жыл бұрын
Please sir do this for Graph Tree too... and recursive based algos.. Thanks!!!
@QuanticDev3 жыл бұрын
@@snehgupta1814 I will definitely do. I'm currently writing a React.js based visualizer tool, after that I should be able to visualize most algorithms with little effort.
@aytunch4 жыл бұрын
Great explanation and choice of subject. Please make more viedos like this with animations.
@QuanticDev4 жыл бұрын
Animations is the way. Much easier to explain algos this way, and much easier to understand. I will do all my algo videos using animations from now on.
@cissecuba3 жыл бұрын
Amazing Video. Helped me a lot!
@sanjayroutela3 жыл бұрын
Great video. Can you please add one more video covering k-way merge but without heap and tournament trees.
@3x6249 Жыл бұрын
if those arrays are not sorted, why not just combine all of them and apply quick sort?
@大盗江南3 жыл бұрын
omg.......i watched ur video to solve one problem...then one comes to another... another lol........this is infinitive........
@QuanticDev3 жыл бұрын
Algo questions always have that fun factor in them. Edutainment in short.
@大盗江南3 жыл бұрын
@@QuanticDev ur video about sliding windows is the best on KZbin, great thanks! If it's possible, could you please do some interviews for different levels of people, like 1 - 2 years of experience, 3+.years . I'm gonna have a interview soon. I am so nervous... 😭😭😭😭
@QuanticDev3 жыл бұрын
@@大盗江南 First 3-4 rounds of interviews will be the same for everyone. Seniors will get to endure systems design, network security, etc. sort of specialized extra rounds of interviews. So the general advice about interviews will apply to everyone. Just continue your algo practice every day. Good luck!
@nataliskvortsova45923 жыл бұрын
thank you! It is very good visualization!
@大盗江南3 жыл бұрын
Buddy, thank you. maybe more videos about interview. Thank u in advance!
@QuanticDev3 жыл бұрын
I will recreate some of the interviews from top companies in the future, including all the questions. Thanks for the suggestion!
@大盗江南3 жыл бұрын
@@QuanticDev one more question plz, u mentioned that it's a good idea to write some tests during the interview. How? On the whiteboard, I just write sth like AssertThat( method (112)). isEqualsTo(5)?
@QuanticDev3 жыл бұрын
@@大盗江南 Yes pretty much, especially for corner cases. Then you should actually verify that assertion is correct. This shows that you care about tests, and might help you find a bug.