I have learnt Python for a couple of months now, and I have always seen Big-O notation many times but never really knew what it was. Your explanation was very clear and now I understand. Keep up the amazing work. This channel definitely deserves more support.
To be honest, I am at this point not even a freshman at university. But you explain and describe the topics you picked so well that I can understand them (obviously not thoroughly but with a good overview). These 3 minuted are amazingly worth it. And - because we‘re talking about algorithms - I cannot understand how the RU-vid algorithm doesn’t highlight you. Well, that’s proof enough: Google must improve. Have a nice day! Julian
Thanks so much Julian! Really makes my day to see that I’ve helped someone! And yes haha, I’m hoping the RU-vid algorithm can catch me sometime soon, but for now I’m just glad to be making content that helps a few people :)
I only knew the name 'Big-O' and had no idea what it was about. Now I understand what it means at least. Thanks for the explanation! Was so clear and understandable.
Small note: sometimes O(n) refers to the size of the input (in bytes, for example), but sometimes it refers to how large the input number is. For example, the complexity of finding the nth fibbonacci number via a simple iterative loop storing the previous two numbers (pseudo code: let mut prevprev, mut prev = 1, 1; for i in [2..n) { let x = prev + prevprev; prevprev = prev; prev = x; }), is usually referred to as O(n) but it's O(n) in the value of the input, not its size. It grows much more rapidly with the size.
The best place to learn DS and algo for absolute beginners is right here, on this channel! I plan on making videos for every single data structure and algorithm, but for now, here’s the plan I would recommend: 1) Watch my video on Top 7 Data Structures, and later this week when it comes out, the video on Top 7 Algorithms 2) For each DS and algo in those videos, Google them in your language of choice. For example, if you code in python and the next item on your list is hashmaps, Google “Hashmaps in python”. You’ll find a ton of resources here. 3) Once you’ve gone over all the DS and algos, start practicing LeetCode. I recommend checking out NeetCode.com for a list to start with. If you can’t come up with a solution, don’t worry! Look at the answer, take time to understand it, and then move on. You’ll get better over time. You just gave me an idea to make a video about a full DS and Algo plan for beginners. I’ll get that out by next week. Hope this helped, please let me know if I can help at all!
@@JustaSimpleComplexSyrian no worries! And hey, if you’re just going into university and you know anything at all, you’re miles ahead of most people. Don’t get too worried if there’s a few things you haven’t learned yet, you have the next few years of your life to get it all!
@@JustaSimpleComplexSyrian No worries. It’s good that you’re on it this early. If you’re able to stay ahead of things in year 1, you’ll be set for internships in years 2 and 3, and this opens the door to working at any company you want. Sky’s the limit, just keep working hard, and remember to take time and enjoy life :)