Deeply Understanding Logarithms In Time Complexities & Their Role In Computer Science

  Рет қаралды 286,083

Back To Back SWE

Back To Back SWE

5 жыл бұрын

Free 5-Day Mini-Course: backtobackswe.com
Try Our Full Platform: backtobackswe.com/pricing
📹 Intuitive Video Explanations
🏃 Run Code As You Learn
💾 Save Progress
❓New Unseen Questions
🔎 Get All Solutions
Logarithms and logarithmic time complexities used to confuse me for a very long time since it was one of those scary things in math where you see a symbol and then you get scared that it is something complex.
Logarithms are very simple. At the most fundamental level, the logarithm asks us a question.
log(8) with a base of 2 asks me: "what do I need to power 2 by to get 8? The answer is 3. 2^3 = 8
log(100) with a base of 10 asks me: "what do I need to power 10 by to get 100? The answer is 2. 10^2 = 100
This generalizes us to understand that a log asks us...what do I need to power my base by to get the number we are taking a log against?
That is what the logarithmic expression evaluates to.
Also, if we have 8 and a log base of 2, we can halve 8 3 times. 8 - 4 - 2 - 1 before we get to a 1 and we cannot cut in half anymore.
In standard mathematics, it is assumed that the base is a base of 10.
In computer science, the base is almost always 2. We will see why.
Where We See Logs In Computer Science:
Levels In A Binary Tree
In general, a binary tree with n nodes will have at least 1 + floor(log_2(n)) levels
When we do something like a tree traversal or heap insertion or removal this is why we use a bound of O(h) which for a balanced binary tree really means O(log(n)).
We will traverse at most a log amoung of levels in the asymptotic sense since that is our tail behavior. Our asymptotic behavior is logarithmic.
Merge Sort & Quicksort
In mergesort, we can only cut the input in half up to log(n) times.
Same for quicksort.
Each sorting algorithm will have log(n) levels of work roughly and then the question becomes what amount of work do we do in each of those levels.
Binary Search
In a binary search, we cut our search space in half every operation based on some predefined searching criteria we define for narrowing search space.
We can only cut our search space in half up to log(n) times.
The logarithm is critical for all of these applications since the question it asks is exactly what we are interested in.
++++++++++++++++++++++++++++++++++++++++++++++++++
HackerRank: / @hackerrankofficial
Tuschar Roy: / tusharroy2525
GeeksForGeeks: / @geeksforgeeksvideos
Jarvis Johnson: / vsympathyv
Success In Tech: / @successintech

Пікірлер: 1 100
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Table of Contents: Logarithms Matter 0:01 - 0:44 The Fundamental Question We Are Asking 0:44 - 3:34 The Logarithm: Minimum Levels In A Binary Tree 3:34 - 4:52 The Logarithm: Merge Sort Levels 4:52 - 7:09 The Logarithm: Binary Search 7:09 - 9:07 Summarizing Why A Logarithm Is Important 9:07 - 9:46 Wrap Up 9:46 - 10:05 Sort of Mistake At 9:39 -> It can mean many more things hence my * I added. It can be insertion into a binary heap (where we bubble an element up or down doing log() work), it can mean binary search, it can mean splitting of input for sorting, etc. etc. Had to clarify and not assume people knew what I meant. If you know what a logarithm means then you don't need to memorize some rules (some you will need to know if you are doing calculus). The rules come from the logic and questions that we are asking.
@MrKishorebitta
@MrKishorebitta 5 жыл бұрын
Hello, Thank you for uploading valuable videos. I have one query. I have just started EPI. how long did you take to complete the entire book for first time? If you follow any strategy ,can you please let me know it?Is there any way to contact you through email?
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
@@MrKishorebitta about a week or so
@MrKishorebitta
@MrKishorebitta 5 жыл бұрын
@@BackToBackSWE about a week? looks like u spent more than 12 hrs per day on that book.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
@@MrKishorebitta :)
@VN-it9tb
@VN-it9tb 4 жыл бұрын
Man this video is worth 68 college slides about time complexity
@aleyummusic
@aleyummusic 5 жыл бұрын
This is without a doubt the best and clearest explanation I've ever seen!
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
hey, oh...check out my new mergesort video. Just put it out. I think it hammers the point home.
@adarshsharmanit356
@adarshsharmanit356 4 жыл бұрын
@@BackToBackSWE Awesome !! The best video on 0{logn)
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@adarshsharmanit356 thx
@supastar25
@supastar25 4 жыл бұрын
Definitely the best
@rorydaines3176
@rorydaines3176 3 жыл бұрын
Kind of blown away at how amazing this was explained.
@laleen123
@laleen123 4 жыл бұрын
This is by far the clearest explanation of log(n). The clouds just parted, I'm basking in that divine light of knowledge. Thank you.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
may you flourish
@vineetverma6645
@vineetverma6645 3 жыл бұрын
AAAAAAAAAAAAAAAAAAAAaaaaaaaaaaaaaaaaaaaAAAAAAAAA(divine music plays)
@ericabutts2906
@ericabutts2906 3 жыл бұрын
Im feeling that euphoria right now
@reaper9271
@reaper9271 7 ай бұрын
Holy shit me too
@bogomilstoynov8405
@bogomilstoynov8405 3 жыл бұрын
My math teacher couldn't teach me in 5 years what you managed to explain in a 10min video, you da man!!
@Ritesh_2401
@Ritesh_2401 2 жыл бұрын
LOL, same brother utube teachers are genius
@NeverisQuiteEnough
@NeverisQuiteEnough 2 жыл бұрын
I have a math degree and never thought of it as cutting into parts, great insight and very helpful!
@yr1520
@yr1520 5 жыл бұрын
Thinking of a base 2 log as "how many times can I divide a number by 2 until I get to 1" makes so much more intuitive sense than how I used to think of it "to what power can I raise 2 in order to get this number."
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Yeah Think of 2 as halving, think of 3 as thirding, think of 4 as fourthing, think of 10 as tenthing...and so on.
@hamzamusse3846
@hamzamusse3846 4 жыл бұрын
2 minutes in and my mind is blown. I knew there was something about Log(n) that was being held a secret!! This explanation--wow I actually have no words. THANK YOU!!!!!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure haha
@thepetrichor443
@thepetrichor443 4 жыл бұрын
My prof tried explaining this last class, and literally every student was so confused on it. Im so glad i found this video. thank you so much
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ye, welcome
@abhishekbag9612
@abhishekbag9612 4 жыл бұрын
This explanation has finally got rid of the confusion i always ended up having while writing down the time complexity. I cannot thank you enough man. This video is a game changer for me. Thanks a lot.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@youtubeaccount0x073
@youtubeaccount0x073 5 жыл бұрын
This was the loveliest explanation, I’m just a freshman trying to do good on the AP CS test in high school
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Nice. Hey, my advice to you (what I'd tell myself). Get very good at programming. High school will likely come easy to you. Screw all the rest...just try to get straight A's and grasp all subjects (especially math). It only gets harder in college. Try getting into the best college you can humanly get into. Don't stress too hard since state schools are still huge and awesome, but it definitely helps when a name is behind you during applications for job, etc. BUT...focus on this...get good...great...at programming and using your brain to come up with solutions. That's all. Stay fit...hit the gym...and BE A SOCIAL HUMAN. It is hard for most CS majors but make your best efforts to have as many friends & meaningful relationships in your life as possible. We are humans with feelings and emotions...not robots...this is something I didn't understand until about 2 years ago. But yeah...find your programming niche...try all the stuff (web, backend, frontend, etc.) and find what holds your interest. And...yeah...that is my advice. These Leetcode problems are kind of detached from reality but are crucial to get a job at a big SWE company at the time of this comment's writing. Just brush up on these as well but..yeah. Get good as shit at programming and build stuff for fun. Then when you really need to step up to the plate when you are in college you have the skills to start anything around...AND all the people around you will be smart too so...yeah...cool stuff can happen. Ok, rant over. I could say more but I need to achieve more to say it so I'm not just blowing hot air.
@hacker-7214
@hacker-7214 4 жыл бұрын
@@BackToBackSWE wish someone had told me this when i was in highschool.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@hacker-7214 yo
@hacker-7214
@hacker-7214 4 жыл бұрын
@@BackToBackSWE right now im a sophomore majoring in cs. At a top 50 cs school US (because i didnt try hard in hs, bad grades low test scores). Anyways your videos are helping me a lot. Im starting to learn data structures even tho im late to the party (i have only been coding for the past year, started coding freshman year in college). I am working hard to get an intership.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@hacker-7214 nice, hey
@LayOffiKnoTaeBo
@LayOffiKnoTaeBo 4 жыл бұрын
You're a really good teacher. Thank you for breaking this down so simply! Please make more content :)
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ok
@grippnault
@grippnault 5 ай бұрын
This has to be one of the most helpful, easy to understand, and most significant CS/CE tutorials I've ever watched. Thank You! Wow, it took me 4 years to come across this video. God Bless You Sir!
@rishonfernandes7976
@rishonfernandes7976 2 жыл бұрын
This is the best channel man!!!! I seldom come across channels like these! this guy explains everything which is awesome!
@yagarf9510
@yagarf9510 4 жыл бұрын
Amazing explanation! Just finished a lecture Involving sorting algorithms and couldent piece together where O(Log n) and O(n Log n) came from. After watching everything just comes together! Thank you so much!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@evanserickson
@evanserickson 2 жыл бұрын
Amazing video! You did an amazing job keeping us engaged and simplifying things.
@krzysztofkalinowski2998
@krzysztofkalinowski2998 3 ай бұрын
This happens when someone who truly understands the topic shares his knowledge and knows how to do it. In a school log n is just another function to solve. This kind of practical explanation is the best! Without It there is no way to use your imagination to think about logarithms! Thanks!
@makermark2159
@makermark2159 5 жыл бұрын
This is a fantastic explanation and display of applications of logarithms in computer science. Thank you for taking the time to make this!
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
sure
@traysonkelii7062
@traysonkelii7062 3 жыл бұрын
I wish you were around during my undergrad, you always provide the cleanest examples to complex CS subjects. Keep doing your thing bro!
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
yup
@justheredoingnothing1170
@justheredoingnothing1170 3 жыл бұрын
Thank you so much! I've been stuck on this for an extremely long time! This has to be the best and clearest explanation i've ever seen!
@nicolasdiaz888
@nicolasdiaz888 3 жыл бұрын
This is the best explanation I've ever seen. Thank you so much :)
@sonamverma1908
@sonamverma1908 4 жыл бұрын
this is all my concepts of algorithms have been wanting for so long.Thankyou for telling us more than "log is reverse of exponentiation"
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure.
@danatbekzhassarov5078
@danatbekzhassarov5078 5 жыл бұрын
It is indeed very clear explanation and on point. Thanks a lot! it really helped me
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
sure
@jamestob1
@jamestob1 Жыл бұрын
I’ve been searching everywhere for a clear explanation and here it is. Well done. Thank you so much.
@VoiceDisasterNz
@VoiceDisasterNz Жыл бұрын
I've been developer for a few years now and wanted to get a refresher. You broke this down and gave some really good ways of remembering things. Thanks!
@legion_prex3650
@legion_prex3650 3 жыл бұрын
Thank you, Sir! Fantastic explanation!
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
sure
@dominicaltamura6200
@dominicaltamura6200 3 жыл бұрын
You just explained something my professors have struggled to for years in 10 minutes. Thanks a ton!
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
sure!
@Dzus1k
@Dzus1k 2 жыл бұрын
Wow. Perfect. I struggled with other explanations but this was very clear!
@jennatucker
@jennatucker 3 жыл бұрын
Thanks so much! Great explanation and presentation. Very helpful!
@ianzhao8218
@ianzhao8218 5 жыл бұрын
Like your video! You even make some business student such as me feels like learning computer science is such a fun thing.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
haha nice, do it!
@yahyafati
@yahyafati 3 жыл бұрын
This is the video that I always wanted but didn't know how to search for.
@vernonneile
@vernonneile 2 жыл бұрын
SO AWESOME!!!... thanks for bringing back the basics to help us understand the complexity clearer. Thank you so much. liked-subscribed
@srinagulg9204
@srinagulg9204 3 жыл бұрын
was searching for this my entire semesters! Finally got it out in 10 minutes. Kudos!
@umairalvi7382
@umairalvi7382 5 жыл бұрын
The explanation was just excellent bro Thank you so much
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
sure
@koushikkou2134
@koushikkou2134 4 жыл бұрын
From the deep down from my heart I thank you for eternity..
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
May the internet flourish.
@davidrahabi
@davidrahabi 4 ай бұрын
Was struggling to understand the conceptual aspect of logs in my algorithms class, this video helped so much. THANK YOU!!
@Reaperman17
@Reaperman17 3 жыл бұрын
DUDE! This helped me so much!! Beginner coders of the internet appreciate you my dude!
@MrKiraBR
@MrKiraBR 4 жыл бұрын
You're amazing, thanks!!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ye
@warragamble
@warragamble 4 жыл бұрын
you're a legend mate!! thank you!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
hey
@akhtarzaman2189
@akhtarzaman2189 3 жыл бұрын
Clear Explanation! Very Nice. Thanks for this.
@LuizEduardo-ke3be
@LuizEduardo-ke3be 4 ай бұрын
Omg! The perfect explanation. It's clear, simple, and understandable
@mahardinirizky
@mahardinirizky 5 жыл бұрын
This is amazing omg ❤❤
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
hey
@loremis
@loremis 4 жыл бұрын
You just compacted two weeks of studying into 10 minutes, thank you
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
great
@newtonpermetersquared
@newtonpermetersquared 3 жыл бұрын
Dude, this explanation was as CLEAR AS WATER... After many years in the Comp Scie world, I finally truly understand logarithmic complexities
@dianafarhat9479
@dianafarhat9479 3 жыл бұрын
Your explanation is just perfect, thank you!
@magnusquist6214
@magnusquist6214 4 жыл бұрын
Duuuuude, you just helped me pass my exams! I am forever grateful!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
U a beast
@abenakn
@abenakn 4 жыл бұрын
wow! Finally, someone speaking English when explaining big0 time complexities! No Joke! Thank you!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
hey
@jacobrice2036
@jacobrice2036 3 жыл бұрын
It’s actually convenient when there is not a language barrier.
@Helkenberg
@Helkenberg Жыл бұрын
Seriously this is a GREAT job of explaining this rather difficult subject matter. Absolutely spot on wonderful! Thank you so much!
@kevin3447
@kevin3447 2 жыл бұрын
Thanks a ton for this video!! This cleared all my doubts related to log(n)
@souravsingh763
@souravsingh763 4 жыл бұрын
I have maths backgroud even then i can't understand but Now I finally understand
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@alifiyahh6387
@alifiyahh6387 4 жыл бұрын
this is the best thing that happened to me
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
hahaha
@alihelbah8798
@alihelbah8798 Жыл бұрын
by far one of the best educational videos. I really needed to try to understand this and you made it easy. thank you
@ChandraShekhar-by3cd
@ChandraShekhar-by3cd 3 жыл бұрын
Mindblowing explanation ever..Just cleared my mind.
@Gulshankumar-xc6ss
@Gulshankumar-xc6ss 4 жыл бұрын
no doubt, just one word, AWESOME :)
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@akshhay
@akshhay 4 жыл бұрын
This is the best explaination I ever saw 😍💖🙏
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@irrelevanceuk
@irrelevanceuk 3 жыл бұрын
Wonderful natural teaching style. Revealing some key intuitions for logarithms in CS. Thank you.
@philipskeen8199
@philipskeen8199 8 ай бұрын
I attend a top 25 university and the CS professors here are unable to explain this material as succinctly and easily as you. Many thanks!
@BackToBackSWE
@BackToBackSWE 7 ай бұрын
Happy Halloween 🎃 Thank you for your kind words, philipskeen! You get 25*2 treats - 50% Off our exclusive lifetime membership use the code SPOOKY50 - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=SPOOKY50
@dariusdalim8780
@dariusdalim8780 4 жыл бұрын
I almost never comment but this was an awesome video. Exactly what I was searching for
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
Nice! If you liked this we have a active class running now, I'd love you to join if interested
@youtubeaccount0x073
@youtubeaccount0x073 5 жыл бұрын
Difference with nlogn and logn???
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
what
@punithakarthik
@punithakarthik 10 ай бұрын
Very detailed, I very much understood logalgorithms keep making amazing videos like these!
@ilikechicken8403
@ilikechicken8403 2 ай бұрын
This explanation is pure art, super simple short and efficient yet effective explanation. Love you man and keep up the good work.
@memeingthroughenglish7221
@memeingthroughenglish7221 29 күн бұрын
Thank you so much for your efforts and explanation. I finally feel like I understand what a log is, and it is soooo COOL!!!
@assytantandia8511
@assytantandia8511 3 ай бұрын
This was such a great video !! Thank you so much
@samitpaudel7886
@samitpaudel7886 3 жыл бұрын
wow what a practical explanation of the topic. Thank you very much.
@hinocenciopaulo
@hinocenciopaulo Жыл бұрын
Beautiful explanation my man! Thank you so much!
@Yammysfsf
@Yammysfsf 3 жыл бұрын
Incredible explanation, going to look through the rest for my interview prep. Thank you dearly
@wasifalam545
@wasifalam545 8 ай бұрын
Learned a lot. Thanks for such precise explanation. 🤗
@mahjongtiles8389
@mahjongtiles8389 2 жыл бұрын
At last I got the *intuitive* explanation of logarithm which is that it asks a question that can be asked in following ways: 1. How many times can you divide the input no. by the no. in the base so that you reach 1? 2. How many times you need to multiply the base no. so that you get the no. in the parentheses? Both questions are essential to get a complete picture of logarithms. Without the 1st question, I don't think that anyone can understand sorting and searching algorithms that have logarithmic complexity. Enlightening explanation. Thanks.
@panagiotisdoukas4085
@panagiotisdoukas4085 Жыл бұрын
This is the best explanation I have ever seen. Great job
@globemasterybusinessformul7352
@globemasterybusinessformul7352 3 жыл бұрын
Amazing. very clear. You are a great teacher.
@Ms24091998
@Ms24091998 3 жыл бұрын
Excellent explanation, thank you!
@sed8337
@sed8337 4 жыл бұрын
Love it. Great explanation. Clear and concise. Thank you
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@enderex
@enderex 4 ай бұрын
the way this man speaks and explains is exceptionally clear.
@ninjarogue
@ninjarogue 3 жыл бұрын
excellent job! thank you for the explanation!
@T4da
@T4da 3 жыл бұрын
How can someone not appreciate this man. His videos are BY FAR, the best CS videos I have seen ever. Great stuff, keep it up!
@vinaysharma3871
@vinaysharma3871 2 жыл бұрын
Thank you for putting so much energy and efforts in this video! This was definitely the most intuitive way to learn log(n). And especially those were the golden words when you referred to how to think when a solution is asked in log(n) ❤
@ariabakhtiar7998
@ariabakhtiar7998 3 жыл бұрын
I love that instead of focusing on code you focused on the concept.
@BobTrieste
@BobTrieste 3 жыл бұрын
Awesome video - thank you ! You just explained in 9 minutes what it took me a full class and two hours of reading to understand.
@warriorsofxu8394
@warriorsofxu8394 3 жыл бұрын
Such a valuable resource. Thankyou!
@fredokoh5633
@fredokoh5633 3 жыл бұрын
What a simple and very clear explanation of logn. Thanks you so much!
@aakashmishra4451
@aakashmishra4451 2 жыл бұрын
This is a gem of a video! Thank you so much.
@khizraakhtar4921
@khizraakhtar4921 Жыл бұрын
Thankyou for such a great explanation!
@alfa1433
@alfa1433 2 жыл бұрын
crystal clear explanation thankyou
@user-oy4kf5wr8l
@user-oy4kf5wr8l 3 жыл бұрын
buddy, ur channel, honestly , is the best channel for IT peopel... great thanks from the bottom of my heart !
@sankeerthsharma7542
@sankeerthsharma7542 2 ай бұрын
one of the best explanation i ever heard regarding why do we have logarithmic time complexity......Great Explanation...Thanks
@jamesdouitsis8180
@jamesdouitsis8180 2 жыл бұрын
Definitely the absolute best explanation, you made it so clear and simple a toddler could understand it!! Thank you very much!
@AshishGupta-be2yz
@AshishGupta-be2yz Жыл бұрын
very awesome ....you have easily explained where to use logN time complexity.
@jinhuang7258
@jinhuang7258 2 жыл бұрын
Wow....thank you thank you on behalf of my math and CS teachers....Fantastic explanation!
@rahulc480
@rahulc480 2 жыл бұрын
You helped me solve a lot of questions I had for so long. Simple and crisp !! Thank you !!
@BackToBackSWE
@BackToBackSWE 2 жыл бұрын
Thank you, glad you liked it 😀 Do check out backtobackswe.com/platform/content and please recommend us to your family and friends 😀
@EthanHofton
@EthanHofton 3 жыл бұрын
Thank you, very well explained
@DarshD
@DarshD 2 жыл бұрын
Thank you for explaining log n in the best possible way with the minimum amount of time required!! You're a legend. Subscribed! Keep up the good work!
@ChArham-bs1ne
@ChArham-bs1ne 2 жыл бұрын
This is the first time I have understood what logs are. Thank you so much. This is the best explanation I've ever seen. Keep it up
@gmramkumar9536
@gmramkumar9536 Жыл бұрын
Thanks bro... This made me clear about logarithmic functions in time complexity of an algorithm
@ryancross3986
@ryancross3986 2 ай бұрын
Great explanation. Keep making content like this!!
@JustPlayFM
@JustPlayFM 3 жыл бұрын
so cool and clear explanation. thanks!
@dileepsoundar1590
@dileepsoundar1590 2 жыл бұрын
Nice and crisp explanation!
@raiyanreza9764
@raiyanreza9764 Жыл бұрын
Beautiful! Finally, after all these years i understand this!
@jerredshepherd2826
@jerredshepherd2826 3 жыл бұрын
I finally understand logarithms in time complexity!! Intuitive explanations like this are so helpful!
@stugttxt1054
@stugttxt1054 3 жыл бұрын
THANK YOU FOR ALL! this is a amazing video
@odanabunaga2505
@odanabunaga2505 8 ай бұрын
dude you clearly have a talent to teach complex things in a simple to understand way. Great job 👍
@koopaling-enthusiast
@koopaling-enthusiast 2 жыл бұрын
you are a LIFE SAVER!!! Thank you for making this video sir :) super helpful
Logarithms explained Bob Ross style
8:57
Tibees
Рет қаралды 3,5 МЛН
КАРМАНЧИК 2 СЕЗОН 5 СЕРИЯ
27:21
Inter Production
Рет қаралды 580 М.
100😭🎉 #thankyou
00:28
はじめしゃちょー(hajime)
Рет қаралды 29 МЛН
100❤️
00:19
Nonomen ノノメン
Рет қаралды 38 МЛН
Eccentric clown jack #short #angel #clown
00:33
Super Beauty team
Рет қаралды 22 МЛН
Why do calculators get this wrong? (We don't know!)
12:19
Stand-up Maths
Рет қаралды 2,1 МЛН
Why The Logarithm Is So Important For Algorithms & Data Structures
10:05
Clément Mihailescu
Рет қаралды 93 М.
Introduction to Logarithms (1 of 2: Definition)
7:53
Eddie Woo
Рет қаралды 1,3 МЛН
Why Is Merge Sort O(n * log(n))? The Really Really Long Answer.
36:50
Back To Back SWE
Рет қаралды 112 М.
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 398 М.
The Doomsday Algorithm - Numberphile
14:33
Numberphile
Рет қаралды 831 М.
2D water magic
10:21
Steve Mould
Рет қаралды 365 М.
Logarithms... How? (NancyPi)
19:15
NancyPi
Рет қаралды 3,3 МЛН
😱НОУТБУК СОСЕДКИ😱
0:30
OMG DEN
Рет қаралды 2,5 МЛН
⌨️ Сколько всего у меня клавиатур? #обзор
0:41
Гранатка — про VR и девайсы
Рет қаралды 653 М.
Power up all cell phones.
0:17
JL FUNNY SHORTS
Рет қаралды 49 МЛН
3D printed Nintendo Switch Game Carousel
0:14
Bambu Lab
Рет қаралды 4,7 МЛН
How Neuralink Works 🧠
0:28
Zack D. Films
Рет қаралды 32 МЛН
iPhone 12 socket cleaning #fixit
0:30
Tamar DB (mt)
Рет қаралды 2,5 МЛН
Карточка Зарядка 📱 ( @ArshSoni )
0:23
EpicShortsRussia
Рет қаралды 263 М.