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

Поділитися
Вставка
  • Опубліковано 5 жов 2024
  • Free 5-Day Mini-Course: backtobackswe.com
    Try Our Full Platform: backtobackswe....
    📹 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,1 тис.

  • @BackToBackSWE
    @BackToBackSWE  5 років тому +94

    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 років тому +3

      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 років тому +1

      @@MrKishorebitta about a week or so

    • @MrKishorebitta
      @MrKishorebitta 5 років тому +1

      @@BackToBackSWE about a week? looks like u spent more than 12 hrs per day on that book.

    • @BackToBackSWE
      @BackToBackSWE  5 років тому +1

      @@MrKishorebitta :)

    • @VN-it9tb
      @VN-it9tb 4 роки тому +2

      Man this video is worth 68 college slides about time complexity

  • @aleyummusic
    @aleyummusic 5 років тому +848

    This is without a doubt the best and clearest explanation I've ever seen!

    • @BackToBackSWE
      @BackToBackSWE  5 років тому +10

      hey, oh...check out my new mergesort video. Just put it out. I think it hammers the point home.

    • @adarshsharmanit356
      @adarshsharmanit356 5 років тому +6

      @@BackToBackSWE Awesome !! The best video on 0{logn)

    • @BackToBackSWE
      @BackToBackSWE  5 років тому +4

      @@adarshsharmanit356 thx

    • @supastar25
      @supastar25 4 роки тому +1

      Definitely the best

    • @rorydaines3176
      @rorydaines3176 4 роки тому

      Kind of blown away at how amazing this was explained.

  • @laleen123
    @laleen123 4 роки тому +431

    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 роки тому +22

      may you flourish

    • @vineetverma6645
      @vineetverma6645 4 роки тому +1

      AAAAAAAAAAAAAAAAAAAAaaaaaaaaaaaaaaaaaaaAAAAAAAAA(divine music plays)

    • @ericabutts2906
      @ericabutts2906 3 роки тому +7

      Im feeling that euphoria right now

    • @reaper9271
      @reaper9271 11 місяців тому +1

      Holy shit me too

  • @bogomilstoynov8405
    @bogomilstoynov8405 3 роки тому +88

    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 роки тому +1

      LOL, same brother utube teachers are genius

  • @NeverisQuiteEnough
    @NeverisQuiteEnough 3 роки тому +48

    I have a math degree and never thought of it as cutting into parts, great insight and very helpful!

  • @philipskeen8199
    @philipskeen8199 Рік тому +4

    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  11 місяців тому +1

      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

  • @yr1520
    @yr1520 5 років тому +22

    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 років тому +3

      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 роки тому +61

    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!!!!!!

  • @thepetrichor443
    @thepetrichor443 5 років тому +37

    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

  • @abhishekbag9612
    @abhishekbag9612 5 років тому +12

    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.

  • @youtubeaccount0x073
    @youtubeaccount0x073 5 років тому +35

    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 років тому +26

      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 5 років тому +5

      @@BackToBackSWE wish someone had told me this when i was in highschool.

    • @BackToBackSWE
      @BackToBackSWE  5 років тому

      @@hacker-7214 yo

    • @hacker-7214
      @hacker-7214 5 років тому +2

      @@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  5 років тому

      @@hacker-7214 nice, hey

  • @dominicaltamura6200
    @dominicaltamura6200 4 роки тому +5

    You just explained something my professors have struggled to for years in 10 minutes. Thanks a ton!

  • @grippnault
    @grippnault 9 місяців тому +2

    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!

  • @traysonkelii7062
    @traysonkelii7062 4 роки тому +4

    I wish you were around during my undergrad, you always provide the cleanest examples to complex CS subjects. Keep doing your thing bro!

  • @ariabakhtiar7998
    @ariabakhtiar7998 3 роки тому +1

    I love that instead of focusing on code you focused on the concept.

  • @sonamverma1908
    @sonamverma1908 4 роки тому +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"

  • @raymondoyinlola7765
    @raymondoyinlola7765 4 роки тому +1

    we did this way back in junior school mathematics in Nigeria. I never knew it would turn out to be an issue for grown ups. My love for coding brought me here. Thank you

  • @dawid_dahl
    @dawid_dahl 4 роки тому +2

    The fact that it's always base 2 implied cleared up a lot for me. Excellent video, thank you!

  • @yagarf9510
    @yagarf9510 5 років тому +6

    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!

  • @dansteryoo
    @dansteryoo 4 роки тому +2

    dude i dunno how you're not blowing up.. you're literally the best teacher i've seen on youtube. thanks man!

    • @BackToBackSWE
      @BackToBackSWE  4 роки тому +2

      thanks and things take time. I'm patient.

  • @yahyafati
    @yahyafati 3 роки тому +4

    This is the video that I always wanted but didn't know how to search for.

  • @mitdasondi2171
    @mitdasondi2171 4 роки тому +1

    4 years , from 4 years it was hunting me today i got my answer , thanks a lot man thanks a tons .

  • @LayOffiKnoTaeBo
    @LayOffiKnoTaeBo 4 роки тому +10

    You're a really good teacher. Thank you for breaking this down so simply! Please make more content :)

  • @someshsarkar4927
    @someshsarkar4927 4 роки тому +1

    This is the only channel you need to watch to learn Complexity analysis. Nice work!!

  • @koushikkou2134
    @koushikkou2134 5 років тому +13

    From the deep down from my heart I thank you for eternity..

  • @redwan_lmati
    @redwan_lmati 4 роки тому +2

    Finally, it feels good when you understand it. thanks

  • @magnusquist6214
    @magnusquist6214 4 роки тому +4

    Duuuuude, you just helped me pass my exams! I am forever grateful!

  • @vickysharma2949
    @vickysharma2949 2 роки тому +2

    trust me, you explain things much better than my Professor. Keep up the good work bro!!

  • @makermark2159
    @makermark2159 5 років тому +3

    This is a fantastic explanation and display of applications of logarithms in computer science. Thank you for taking the time to make this!

  • @himanshudas4173
    @himanshudas4173 4 роки тому +2

    Finally! Extremely lucid explanation man! Loved it
    Thanks a ton!

  • @ianzhao8218
    @ianzhao8218 5 років тому +3

    Like your video! You even make some business student such as me feels like learning computer science is such a fun thing.

  • @nicolasdiaz888
    @nicolasdiaz888 3 роки тому +1

    This is the best explanation I've ever seen. Thank you so much :)

  • @legion_prex3650
    @legion_prex3650 4 роки тому +3

    Thank you, Sir! Fantastic explanation!

  • @FREDDYDOG911
    @FREDDYDOG911 4 роки тому +1

    This is definitely the best channel I've come across for Data Structures and Algorithms. The videos are especially comprehensive and everything is explained in depth before moving to the next segment. Great work.

  • @abenakn
    @abenakn 4 роки тому +11

    wow! Finally, someone speaking English when explaining big0 time complexities! No Joke! Thank you!

  • @davidrahabi
    @davidrahabi 8 місяців тому

    Was struggling to understand the conceptual aspect of logs in my algorithms class, this video helped so much. THANK YOU!!

  • @loremis
    @loremis 4 роки тому +3

    You just compacted two weeks of studying into 10 minutes, thank you

  • @teamchoss
    @teamchoss Рік тому

    This dude is insane with how clear and concise his explanation is. I was skeptical clicking on a 10 min video hoping to understand Logs but I can learn a thing or two about teaching from this.

    • @BackToBackSWE
      @BackToBackSWE  Рік тому

      Thank you 🎉 Please enjoy a special coupon from us - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=SUB 🚀

  • @danatbekzhassarov5078
    @danatbekzhassarov5078 5 років тому +3

    It is indeed very clear explanation and on point. Thanks a lot! it really helped me

  • @odanabunaga2505
    @odanabunaga2505 Рік тому

    dude you clearly have a talent to teach complex things in a simple to understand way. Great job 👍

  • @souravsingh763
    @souravsingh763 5 років тому +10

    I have maths backgroud even then i can't understand but
    Now I finally understand

  • @VoiceDisasterNz
    @VoiceDisasterNz 2 роки тому

    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!

  • @alifiyahh6387
    @alifiyahh6387 5 років тому +9

    this is the best thing that happened to me

  • @otaviocelestinodossantos1651
    @otaviocelestinodossantos1651 5 місяців тому

    Man, this is the clearest explanation about log(n) i've ever seem. Thank you so much

  • @umairalvi7382
    @umairalvi7382 5 років тому +3

    The explanation was just excellent bro
    Thank you so much

  • @大盗江南
    @大盗江南 3 роки тому

    buddy, ur channel, honestly , is the best channel for IT peopel... great thanks from the bottom of my heart !

  • @akshhay
    @akshhay 5 років тому +10

    This is the best explaination I ever saw 😍💖🙏

  • @danilopopovikj2746
    @danilopopovikj2746 4 роки тому +2

    After 3 years of professional software development I finally really understand it, much love!

  • @warragamble
    @warragamble 4 роки тому +3

    you're a legend mate!! thank you!

  • @nitinramadoss4112
    @nitinramadoss4112 5 років тому +2

    You are a tremendously talented teacher! I cannot believe I understood this integral concept in a mere 10 minutes

  • @MrKiraBR
    @MrKiraBR 4 роки тому +3

    You're amazing, thanks!!!

  • @JogoShugh
    @JogoShugh 3 місяці тому

    Within a minute or so, I knew this was going to be one of the best explanations I have seen or read. Thanks!

    • @JogoShugh
      @JogoShugh 3 місяці тому

      I've been reading Grokking Algorithms 2nd Edition, and found your explanation better. Though, I love the book too."
      One thing that bothers me in most explanations, including in GA2ndEd, is that they rarely deal with the case where the item you are looking for is the last one.
      In your example, of 1, 2, 3, 4, 5, 6, 7, 8 if we are looking for "8", and using the floor division approach (which GA2ndEd uses) we start with index 3, too low. Next we look at "5" within 5, 6, 7, 8. 2nd attempt, too low. Next we look at 7 within 7,8. Third attempt, and still too low. Now, unless we know ahead of time that the item we're looking for is guaranteed to be in the set, then we must make a 4th comparison to verify that 8 is indeed the last available item to examine.
      The book says it is going to explain this in chapter 4 (I'm only on 3) as to why constants are not used in Big O notation, but I just wish they and others would note this nuance when the list of items is a power of 2.

  • @dariusdalim8780
    @dariusdalim8780 5 років тому +3

    I almost never comment but this was an awesome video. Exactly what I was searching for

    • @BackToBackSWE
      @BackToBackSWE  5 років тому

      Nice! If you liked this we have a active class running now, I'd love you to join if interested

  • @jamestob1
    @jamestob1 Рік тому

    I’ve been searching everywhere for a clear explanation and here it is. Well done. Thank you so much.

  • @Gulshankumar-xc6ss
    @Gulshankumar-xc6ss 5 років тому +5

    no doubt, just one word, AWESOME :)

  • @vanessamyron
    @vanessamyron 5 років тому +1

    You have no idea how happy I am to have come across your channel. This has helped me so so much. Please keep up the good work.

  • @mahardinirizky
    @mahardinirizky 5 років тому +3

    This is amazing omg ❤❤

  • @glennmendonza2304
    @glennmendonza2304 4 роки тому +1

    This has got to be the best explanation. This explains the time complexity of merge sort and quick sort as well. Thanks a lot!!!

  • @youtubeaccount0x073
    @youtubeaccount0x073 5 років тому +3

    Difference with nlogn and logn???

  • @DJalyssagail
    @DJalyssagail 4 роки тому +1

    Crystal clear explanation. It's also great that you cut out parts while you write on the board. Most others don't do that! Thank you!

  • @gloriaben01
    @gloriaben01 3 роки тому

    I searched so many videos for Big O and understood everything except logs.. Thanks much. This is the best explanation ever.

  • @mtps9949
    @mtps9949 2 роки тому +1

    thank you. this was my doubt for a long time. not many ppl have such good understanding of logs.

  • @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

  • @annareichelt5997
    @annareichelt5997 2 роки тому

    Thank you for making me understand something countless teachers and tutors failed to do.

  • @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

  • @enderex
    @enderex 8 місяців тому

    the way this man speaks and explains is exceptionally clear.

  • @KoryGraphic
    @KoryGraphic 4 роки тому +2

    I can't believe I finally got it. Thank you so much.

  • @a.s7252
    @a.s7252 2 роки тому +1

    Such a clear explanation! I was able to come to the conclusion before the end of the video.

    • @BackToBackSWE
      @BackToBackSWE  2 роки тому

      Amazing! Subscribe to our DSA course with a flat 30% discount for more explanations and content b2bswe.co/3HhvIlV

  • @drunkmadala
    @drunkmadala 4 роки тому +1

    Thanks,I never got this concept, but you made it very simply and clear.

  • @Reaperman17
    @Reaperman17 3 роки тому

    DUDE! This helped me so much!! Beginner coders of the internet appreciate you my dude!

  • @srinagulg9204
    @srinagulg9204 3 роки тому

    was searching for this my entire semesters! Finally got it out in 10 minutes. Kudos!

  • @susanthomas2317
    @susanthomas2317 3 роки тому

    This is the best video to explain nlogn and logn time complexity.i was confused for over a year.

  • @sed8337
    @sed8337 4 роки тому +2

    Love it. Great explanation. Clear and concise. Thank you

  • @yanistancheva3076
    @yanistancheva3076 3 роки тому +1

    Watched an hour lecture and couldn't understand a thing. Watched 10 min of this video and is now all clear. Thank you

  • @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!

  • @ilikechicken8403
    @ilikechicken8403 7 місяців тому

    This explanation is pure art, super simple short and efficient yet effective explanation. Love you man and keep up the good work.

  • @hokiohki
    @hokiohki 4 роки тому +2

    omg, I finally understand the general concept of this tern, many thanks to you

  • @hoony30
    @hoony30 3 роки тому +1

    this is unbelievable.. literally the best video I've ever seen

  • @meenakshisundaram1002
    @meenakshisundaram1002 4 роки тому +1

    Thank you for this video. It will helps to understand the concept of logarithms in computer science.

  • @raiyanreza9764
    @raiyanreza9764 2 роки тому

    Beautiful! Finally, after all these years i understand this!

  • @slxthkween
    @slxthkween Рік тому

    Ive watched like 7 videos on this topic and yours was the first that made sense thank you!

    • @BackToBackSWE
      @BackToBackSWE  Рік тому

      Thank you! Please enjoy a special code from us - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=slxthkween 🎉

  • @LuizEduardo-ke3be
    @LuizEduardo-ke3be 8 місяців тому

    Omg! The perfect explanation. It's clear, simple, and understandable

  • @sanjeevsiva17
    @sanjeevsiva17 5 років тому +2

    Needed this, patience - > this channel will go places!

    • @sanjeevsiva17
      @sanjeevsiva17 5 років тому +1

      PS : Been trying to understand what is going on with this logarithm bullshit ever since high school. Now it's not bullshit anymore

    • @BackToBackSWE
      @BackToBackSWE  5 років тому +1

      thanks

    • @BackToBackSWE
      @BackToBackSWE  5 років тому +1

      @@sanjeevsiva17 yeah, same

  • @arshneetkathuria1757
    @arshneetkathuria1757 3 роки тому

    I was very terrible at cracking the time complexity when it comes to logn but you made it just a 10min thing...Thanks tonnes

  • @krzysztofkalinowski2998
    @krzysztofkalinowski2998 7 місяців тому +1

    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!

  • @harshakada3374
    @harshakada3374 4 роки тому +2

    Bro please do more videos. Absolutely amazing, the amount of clarification you are giving is 👌👌

  • @kamalapriyass2608
    @kamalapriyass2608 3 місяці тому

    This exaplanation is awesome, wonderful. Thank for the wonderful service!!

  • @sankeerthsharma7542
    @sankeerthsharma7542 7 місяців тому

    one of the best explanation i ever heard regarding why do we have logarithmic time complexity......Great Explanation...Thanks

  • @evanserickson
    @evanserickson 2 роки тому +2

    Amazing video! You did an amazing job keeping us engaged and simplifying things.

  • @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.

  • @mohamedmeghawry6131
    @mohamedmeghawry6131 4 роки тому +2

    Thank you for the very clear explanation. You saved my allot of time :)

  • @jerredshepherd2826
    @jerredshepherd2826 3 роки тому

    I finally understand logarithms in time complexity!! Intuitive explanations like this are so helpful!

  • @salihmsa7530
    @salihmsa7530 3 роки тому

    I've genuinely struggled horribly with this aspect of Big O notation because I couldn't just wing it, but now I really understand this. Thanks!

  • @rahulc480
    @rahulc480 2 роки тому

    You helped me solve a lot of questions I had for so long. Simple and crisp !! Thank you !!

    • @BackToBackSWE
      @BackToBackSWE  2 роки тому +1

      Thank you, glad you liked it 😀
      Do check out backtobackswe.com/platform/content
      and please recommend us to your family and friends 😀

  • @bridger4954
    @bridger4954 3 роки тому

    I have struggled with math, and always was behind when it came to Computer Science things directly related to mathematics. My mind is fucking blown dude. It all makes sense, whenever I looked at Logs my eyes would glaze over and I'd struggle. You've cleared everything up for me, thank you.

  • @rileynobles7146
    @rileynobles7146 4 роки тому +2

    Awesome job, you told me everything I needed to know in the first 3 minutes.

  • @jacktaylor1516
    @jacktaylor1516 2 роки тому

    This guy is just incredibly good at explaining difficult things.

  • @blahdiblah2169
    @blahdiblah2169 Рік тому

    Never in all my life have I ever heard anyone explain this so perfectly.

    • @BackToBackSWE
      @BackToBackSWE  Рік тому

      Thank you 🎉 Please enjoy a special coupon from us - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=SUB 🚀

  • @andrewcarranza1562
    @andrewcarranza1562 4 роки тому +3

    subbed, best video ive seen on understading logs

  • @rishonfernandes7976
    @rishonfernandes7976 3 роки тому

    This is the best channel man!!!!
    I seldom come across channels like these!
    this guy explains everything which is awesome!