Big O in 2 Minutes

preview_player
Показать описание
Big O notation is one of the most important algorithmic topics for coding interviews. Today we'll be understanding it in just 2 minutes.

🔗 Resources

🎵 Music
Music Courtesy of Epidemic Sounds
Tea Tree - Jobii
Pick Up Your Phone Please - baegel

#coding #softwareengineer #bigo
Рекомендации по теме
Комментарии
Автор

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.

yuqingpeng
Автор

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 YouTube algorithm doesn’t highlight you. Well, that’s proof enough: Google must improve.
Have a nice day!
Julian

voegel
Автор

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.

OverlordOfNerds
Автор

This is the best explanation for Big O and how important it is.

myst.youtube
Автор

Great video! Just found your channel and subbed

itzDJ
Автор

love your videos and visuals. keep it up

mokho
Автор

Awesome channel with incredible content .. keep going

HusamOdat-qqii
Автор

Beautiful! You gained a new subscriber and hopefully a new student eagerly waiting for new videos.

shirazkamran
Автор

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.

rosek
Автор

I am one of your viewer from 1K subscription! Congratulations 🎉
Keep up the good work brother 🥰

iamthesrm
Автор

Thank you so much for such a helpful information.

MrRe-sjiv
Автор

There's a parenthesis mismatch in your thumbnail, maybe "O(n(log(n))" was not intended.

levydorgival
Автор

Please explain then, why not use the best O(logn) always as its the best right?.

secretnobody
Автор

great vid! where is the best place to learn DS and algo for absolute beginners, and what is the best strategy to learn and retain that info?

chamarr
Автор

Nice presentation but why that background music?

josephjoshi-mr
Автор

wtf is this tho? is this university level or highschool stuff?

JustaSimpleComplexSyrian