Top 7 Data Structures for Interviews Explained SIMPLY

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 202

  • @Codebagel
    @Codebagel  2 ปีที่แล้ว +107

    This is the first video I’ve added background music to - please let me know if you enjoyed it, or if you have any other feedback!

    • @frosty_teacup
      @frosty_teacup 2 ปีที่แล้ว +14

      I definitely like the music, I've found that silence in the background can lead to me getting bored more quickly for some reason

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +9

      @@frosty_teacup Awesome I’m glad to hear that! (not the bored thing, the music helping thing 😂)

    • @wlqpqpqlqmwnhssisjw6055
      @wlqpqpqlqmwnhssisjw6055 2 ปีที่แล้ว +2

      Music is perfect

    • @Life_Has_Changed
      @Life_Has_Changed ปีที่แล้ว +3

      First video I've seen from you and awesome job man very helpful. Music is perfect, I appreciate it being subtle and your voice is still clear to hear

    • @FunnySubmarine-ij4zk
      @FunnySubmarine-ij4zk 9 หลายเดือนก่อน +1

      Thank you so much for your vidoes. I like the videos without music .

  • @shadowrl7637
    @shadowrl7637 9 หลายเดือนก่อน +96

    Data Structures:
    Arrays:
    - Read: O(1)
    - Insertion: O(n)
    - Deletion: O(n)
    - Fast at reading but slow at insertion and deletion.
    Linked Lists:
    - Read: O(n)
    - Insertion: O(1)
    - Deletion: O(1)
    - Slow at reading but efficient for insertion and deletion.
    HashMaps:
    - Read: O(1)
    - Insertion: O(1)
    - Deletion: O(1)
    - Similar to arrays but with named indexes (keys); unordered but provide fast lookup.
    Stacks:
    - Push: O(1)
    - Pop: O(1)
    - Peak: O(1)
    - Follow the LIFO (Last In, First Out) principle; useful for fast retrieval of the topmost element but can be cumbersome for inserting or deleting elements in the middle or end.
    Queues:
    - Enqueue: O(1)
    - Dequeue: O(1)
    - Front: O(1)
    - Follow the FIFO (First In, First Out) principle; the first element in line is the first to come out. Think of them as playlists for organizing items in order of arrival.
    Trees:
    - Read/Search: O(log n)
    - Insertion: O(log n)
    - Deletion: O(log n)
    - Nodes connected by edges; root, parent-child connections.
    Binary Trees:
    - Efficient searching of ordered values.
    - Follow a binary search property where left child nodes are less than the parent and right child nodes are greater.
    - Useful for tasks like number guessing games or dictionary implementations.
    Graphs:
    - Traversal/Search: O(V + E) (V: number of vertices, E: number of edges)
    - Insertion: O(1)
    - Deletion: O(1)
    - Versatile models for connections between nodes and edges; can be directed or undirected with no neighboring limit. Can include cycles and weights on paths. Used for tasks like route optimization.

  • @Lorenzo-pw7dp
    @Lorenzo-pw7dp 7 หลายเดือนก่อน +32

    Dude you f nailed it! The well made graphics of the video, along the real life examples are top tier! Couldn't explain better!

  • @wlqpqpqlqmwnhssisjw6055
    @wlqpqpqlqmwnhssisjw6055 2 ปีที่แล้ว +23

    you got a good clear voice ,you use simple English words most of the non native English speakers gets hard to cope up with native English speaker's tutorials and there is no point of seeing the content in native language due to bad quality ,you are maintaining both ,and the best thing is you use *simple examples* ,which are not region specific , so we all get it easily, make more dsa videos and put them in sequence wise ,easy to find, perfect animation ,no extra content on screen

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +4

      Thanks so much! Making a Top 7 Algorithms video in the same style :)

    • @Sailesh_Bhoite
      @Sailesh_Bhoite 5 หลายเดือนก่อน

      True!

  • @marko3808
    @marko3808 2 ปีที่แล้ว +37

    I've never hit the Subscribe and the bell button faster in my life. This was awesome! Im excited to see more in-depth videos about data structures

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +3

      I’m excited to keep making videos! Comments like these are always so motivating. Thanks so much!

  • @akiburrahman8303
    @akiburrahman8303 2 ปีที่แล้ว +12

    Thanks a lot. The video was awesome. Never lost focus for a single second. I can imagine how much effort you've put into it. Keep it up.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +4

      Thanks so much! It’s honestly so much effort haha people don’t realize. I didn’t even realize until I started. This video took around 12 hours to bring to completion, from scripting to recording audio to making video graphics and then editing everything together. I appreciate comments like these, makes it all worth it! :)

  • @holydoggo8979
    @holydoggo8979 9 หลายเดือนก่อน +3

    IF ONLY I HAD FOUND YOU SOONER .. this was so simply explained!!!! Subscribed right away!

  • @DavidsGameplayMC
    @DavidsGameplayMC 6 หลายเดือนก่อน +12

    How tf do you only have 21k dude this is the best video on data structures I’ve ever seen!!!

    • @johnnycincocero
      @johnnycincocero 6 หลายเดือนก่อน +3

      I just told myself the same thing. His videos are informative and well-produced.

    • @Darrel1202
      @Darrel1202 5 หลายเดือนก่อน

      facts!!

  • @redtrees9583
    @redtrees9583 7 หลายเดือนก่อน +3

    Simple explanation and the pace is slow enough to process the information comfortably. I have watched countless of vids on data structures and this is by far my favourite. Great work!!

  • @ptd3v
    @ptd3v 9 หลายเดือนก่อน +9

    This was amazing, an incredibly dull topic, explained so well. Kudos!

  • @sw6273
    @sw6273 2 ปีที่แล้ว +3

    Thank you for your videos! I'm about to be a freshman CS major and starting to learn Data Structures and Algorithms for software engineering interview prep. I would love to see videos on standard algorithms and go in-depth about major data structures and algorithms!

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      I have all of those in the works! Everything you need for software engineering interviews, I have you covered! :)

    • @sw6273
      @sw6273 2 ปีที่แล้ว

      ​@@Codebagel Sounds amazing! Looking forward to them!

  • @developerSwitch
    @developerSwitch 5 หลายเดือนก่อน +1

    This is precise and complete understanding exhibited by the person explaining. Thank you

  • @mike5629
    @mike5629 6 หลายเดือนก่อน +4

    Man the way you explain this and with the visualization was just perfect ! , I'm going to keep referring back to this video as I learn DSA thank you !

  • @engrjohnai
    @engrjohnai 5 หลายเดือนก่อน

    I have been learning DSA python codes for a while and did not really get why we use each of the DS you mentioned. Now it makes so much sense. Thank you so much. This is one of the channels I had to both follow on work and personal account.

  • @nikhiltomb
    @nikhiltomb 9 หลายเดือนก่อน +2

    You are so clear and concise. Thank you for making this video.

  • @kickassvideos5469
    @kickassvideos5469 ปีที่แล้ว +1

    8:40 the most top parent node is also called the ROOT and the last children on the very bottom which dont have any other nodes connected to them are called LEAFES.

  • @teksolucians6989
    @teksolucians6989 9 หลายเดือนก่อน +1

    Yeah thank you bro for this video. I just starting my course in Algorithm Analysis and Design, so this video was a helpful refresher. Those are the exact same data structures in the course (Bachelor's Degree Level)

  • @priscillasilva6510
    @priscillasilva6510 9 หลายเดือนก่อน +3

    This is amazingly explained and the examples you give are also very helpful. Thanks a lot!❤

  • @TruckerDa415
    @TruckerDa415 6 หลายเดือนก่อน +1

    Love the analogies that you use to explain the Data structure concept. Thank you 🙏🏾

  • @johnnycincocero
    @johnnycincocero 6 หลายเดือนก่อน +21

    Easier said than done I know, but you need to produce more content.

  • @sammusa4578
    @sammusa4578 10 หลายเดือนก่อน +2

    so far you are the best to explain those concepts. Keep Up!

  • @frosty_teacup
    @frosty_teacup 2 ปีที่แล้ว +3

    All of these videos have been super helpful so far, and this one convinced me to subscribe. Thank you for providing this resource!

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      You’re welcome! Thank you for the kind words! I’m glad this one was able to convince you to stick around :)

  • @MAli-yh7gr
    @MAli-yh7gr 5 หลายเดือนก่อน +1

    Well descriptive, easy to understand. I have been learning DSA with Python. Find few videos on DSA with Python. Yours is the best, plz keep it up.

  • @Alcinos
    @Alcinos 2 ปีที่แล้ว +5

    Your content is underrated man. Click the video thinking this was some 100k views video about DS. The effort you put in this one is fantastic. The way you explain the concepts visually helps me understand a lot faster. You gain a new sub today. Hope to see more and more of you.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      Thanks so much! I’ll keep making content to keep helping people out :)

  • @MaxShapira2real
    @MaxShapira2real 8 หลายเดือนก่อน

    Thank you! Your videos are top-notch. I'd love to see you make a complete paid course on teaching data structures and algorithms in Python. This would be really valuable for the community since there aren't many good courses on DSA (sadly).

  • @siddhantmisal4115
    @siddhantmisal4115 2 ปีที่แล้ว +4

    indded we want more dsa videos , explanation with example u naild it !!

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      I'll make sure to keep making them! Thanks for the motivation!

  • @anagha915
    @anagha915 2 หลายเดือนก่อน

    One of the best videos on data structures that ive seen

  • @brSilva720
    @brSilva720 8 หลายเดือนก่อน

    I often heard about hash maps, now i get it that is simple a key value pair, like dictionaries or Json.

  • @prodbyscottie
    @prodbyscottie 9 หลายเดือนก่อน +2

    Straightforward and simple! Thanks I enjoyed the video.

  • @juniorjose06
    @juniorjose06 8 หลายเดือนก่อน +1

    This content is pure gold. Suscribed.

  • @AlThePal78
    @AlThePal78 9 หลายเดือนก่อน

    The graph expression is amazing and easy makes sense

  • @dnkreative
    @dnkreative หลายเดือนก่อน

    By reading - you meen random access. If you have index/iterator already reading from linked list isn't slower, it just locating the partiular index is slower. So, visiting every element is the same complexity for arrays and linked list (if we omit non contiguous memory access pattern and cache misses)

  • @PaulRamnora
    @PaulRamnora 8 หลายเดือนก่อน +1

    Good work! Just what I needed a very 'simple'...and, also, perfectly understandable...explanation of an, otherwise, very 'complex' subject. Well done! Thanks! ;-)

  • @ta4h1r2
    @ta4h1r2 2 ปีที่แล้ว +2

    Hey man, I'd love to see more videos about data structures. Perhaps with some code examples and a little more in-depth descriptions of memory allocation for each, if at all possible. Maybe dedicating entire videos to a single data structure would do the trick? And then later have a playlist for data structures? I really loved the way CS50's intro to data structures was taught. This is an incredibly important topic for me, being mostly self-taught and trying to solve programming problems everyday. I wish I studied CS in undergrad... but videos like these make it a little more bearable. Thanks for your hard work!

    • @ta4h1r2
      @ta4h1r2 2 ปีที่แล้ว

      Oh and I'm especially interested in graphs now... hahaha

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      I plan on making videos for every data structure with code examples, solving problems with them, and memory allocation more in-depth!

    • @ta4h1r2
      @ta4h1r2 2 ปีที่แล้ว +1

      @@Codebagel Legend!

  • @dnasredine
    @dnasredine 9 หลายเดือนก่อน

    Wow, what a concise and informative breakdown of the top 7 data structures! 📚💻 Codebagel really knows how to simplify complex concepts for us. From arrays to graphs, each explanation was clear and easy to understand. Thanks for providing such valuable insights into data structures essential for interviews, classes, and projects. Can't wait to implement this knowledge! 👏🚀 #datastructures #coding #softwareengineer

  • @yosefhesham8578
    @yosefhesham8578 7 หลายเดือนก่อน

    Bro, why didn't you come to me when searching for the course? This video is the clearest and most useful one.

  • @neavyandmacho2977
    @neavyandmacho2977 2 หลายเดือนก่อน

    this is indeed helpful ; looking forward to join the community for happy learning

  • @johnsanford2
    @johnsanford2 2 ปีที่แล้ว +1

    This was very good and very easy to understand. Wish they taught it this way in college.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      Thanks so much! I’ll keep making videos like this to help everyone who needs it!

    • @johnsanford2
      @johnsanford2 2 ปีที่แล้ว

      @@Codebagel That's awesome. Ill keep an eye out!

  • @yaylaenes
    @yaylaenes 9 หลายเดือนก่อน +2

    Love it! Thanks for your effort. This is video is diamond 💎

  • @xeofela
    @xeofela ปีที่แล้ว

    this channel deserves a million subs

  • @-parrrate
    @-parrrate 2 ปีที่แล้ว +1

    couple of months ago, I stumbled upon some very bad blog entries about data structures; though list of data structures was almost the same, the way you present is at least intelligible; I don't know why what you do isn't a widespread norm; this video deserves more attention for at least being correct (sounds kind of sad, but yes, IT education is still in a state where bad content is too easy to find);

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      Thank you! That’s why I chose to make this style of video, because I found I was struggling with the same issue as well.

  • @ashiqurrahman1385
    @ashiqurrahman1385 9 หลายเดือนก่อน

    This video is very helpful for basic theory of DSA

  • @Arbnor93
    @Arbnor93 7 หลายเดือนก่อน

    I’ve never subbed to someone this quick.

  • @arnabghosh3457
    @arnabghosh3457 5 หลายเดือนก่อน +1

    You earned a subscriber today!! I want more of these videos!!

    • @Codebagel
      @Codebagel  5 หลายเดือนก่อน +1

      More coming soon!

  • @ordinarynot3305
    @ordinarynot3305 หลายเดือนก่อน

    Amazing, simple and so visual!!!! Subscribed , thank you thank you thank you ! -Monika

  • @vinaypawar307
    @vinaypawar307 4 หลายเดือนก่อน

    This is a very good video, if you just want to do a basic revision!...

  • @JamesBias-o6k
    @JamesBias-o6k หลายเดือนก่อน

    useful and informative great job and good content. I want to see more like this one.

  • @webdevbasics
    @webdevbasics 8 หลายเดือนก่อน +2

    Hi. A very good video. At 2:57 you mentioned LinkedLists had O(1) for a deletion operation. How would that be the case if you have to start from the first node and traverse linearly until you find the node you want to delete? I think a deletion is O(n), same as a read.

  • @joelngige5776
    @joelngige5776 2 หลายเดือนก่อน

    Great explanations!!! Keep up the good work

  • @sujeet4410
    @sujeet4410 2 ปีที่แล้ว +2

    Found you on reddit ... Loving the video. Subscribed.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Thank you!

    • @sujeet4410
      @sujeet4410 2 ปีที่แล้ว

      @@Codebagel More tree videos please. DFS, BFS, Heaps would be really helpful.

  • @Sailesh_Bhoite
    @Sailesh_Bhoite 5 หลายเดือนก่อน

    Nice video.
    As you mentioned please make a separate and dedicated video on graph data structure.

  • @Gibblard
    @Gibblard 3 หลายเดือนก่อน

    Dude you explained these super well! TYSM!!!

  • @BrinleyBlogette
    @BrinleyBlogette 7 หลายเดือนก่อน

    Amazing. Thank you. Is there a play list going over each in depth?

  • @Moxific
    @Moxific 2 ปีที่แล้ว +2

    Great Work, very useful !! Can't wait for the detailed videos.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Thanks! First one coming next week!

  • @alvinkim9800
    @alvinkim9800 2 ปีที่แล้ว +1

    In the linked lists example, you show a diagram where the data is stored with a finite number of spots in between items. What would happen if I tried to insert in between two items right next to each other?
    Linked List: 5 _ _ 4 3 _ 8
    Insert 6 in the 2nd spot (starting from 0)
    Would it be slower? And would it shift everything after the insert space by one until there is an empty space, or would it shift everything back more to create extra space?
    Also, nice video.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Are you trying to insert the 6 between the 4 and 3?
      Ultimately it doesn’t matter where you store the new 6 in memory. The whole advantage of linked lists is items don’t need to be next to each other. You can store the 6 somewhere else, and have the element before it point to it.
      So if the current linked list (the one you gave) is like this: 5 -> 4 -> 3 -> 8
      You can store the 6 somewhere else in memory, and have the 4 now point to it:
      5 -> 4 -> 6 -> 3 -> 8
      Does that clear up your question? If not, please feel free to explain and I’ll definitely try and help!

    • @alvinkim9800
      @alvinkim9800 2 ปีที่แล้ว +1

      @@Codebagel Yea, that makes much more sense now. Thanks for clearing up that items can be stored anywhere.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      @@alvinkim9800 No worries, always up to help clear things up where I can!

  • @TheAaa1919
    @TheAaa1919 3 หลายเดือนก่อน

    Wow! Excellent explanation! Thanks so much

  • @mesta3329
    @mesta3329 9 หลายเดือนก่อน

    Thank you. Best explained🥇. After long time I just clicked on bell icon.

  • @maazshaikh7905
    @maazshaikh7905 11 หลายเดือนก่อน

    Amazing explanation. Where can i find the in depth videos on each of the data structures.

  • @himanshoojain770
    @himanshoojain770 4 หลายเดือนก่อน

    Bro said thanks for 1K💀, Bruh you deserves 100k and even more pls keep doing the good work
    subs+=1

  • @AmitErandole
    @AmitErandole 2 ปีที่แล้ว +1

    This was very good. Please do more of these

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Thank you, I will!

  • @shyama5612
    @shyama5612 2 หลายเดือนก่อน

    simple and clear. keep it up!

  • @supasugaman
    @supasugaman 7 หลายเดือนก่อน +6

    No one refers to the child nodes as `leaves' the leaves are the terminal nodes. In other words the nodes with no children.

  • @michaeltkere6813
    @michaeltkere6813 ปีที่แล้ว

    Thank you for explanation and channel as it is helping me understand data structures as I am doing Python. I would love to see some coding examples using data structures. Otherwise, keep up the good work

  • @patekpre
    @patekpre 2 ปีที่แล้ว +1

    You will rock my brother soon!!!!! Keep Going.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Thank you! I’ll keep making content don’t worry!

  • @arkan7rb
    @arkan7rb 9 หลายเดือนก่อน

    thank you very much for wonderful content and explanation
    keep it up sir
    greetings from Yemen

  • @abbk8815
    @abbk8815 2 ปีที่แล้ว +1

    you are simply the best please do algorithms as well

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Algorithms video should be coming up in the next week or so!

  • @AbsoluteWoo
    @AbsoluteWoo 2 หลายเดือนก่อน

    Great video. Very clear. Thanks!

  • @user-qx4sk3ud6n
    @user-qx4sk3ud6n 6 หลายเดือนก่อน

    Can i say one truth ? This guy teaches data structures well than my data structure teacher in my college😂❤

  • @Jcmacielh
    @Jcmacielh 2 ปีที่แล้ว +1

    Excellent explanation! Great quality also!

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Thanks so much!

  • @LilJollyJoker
    @LilJollyJoker 6 หลายเดือนก่อน +2

    23.1K SUBS! U DESERVE MORE!

    • @Codebagel
      @Codebagel  6 หลายเดือนก่อน +1

      Thanks so much! Hopefully 50k soon! :)

  • @therealryry777
    @therealryry777 8 หลายเดือนก่อน

    learned more from you than my data structures course haha

  • @Tsakos17
    @Tsakos17 8 หลายเดือนก่อน

    Go go data structures! Nice video, keep it up.

  • @kbmelody8
    @kbmelody8 2 หลายเดือนก่อน

    Super helpful! thank you so much!

  • @JarifGG
    @JarifGG 8 หลายเดือนก่อน

    Explained really beautifully ❤

  • @tigogojarek
    @tigogojarek 2 ปีที่แล้ว +1

    Love your content man! Hope to see more from you.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Thanks so much Exstra! Follow up video to this one (Top 7 Algorithms for Interviews) coming in the next few days!

  • @mk-ck8or
    @mk-ck8or 5 หลายเดือนก่อน

    Nice video! I'm just confused about the binary search tree example. If you wanted to search a dictionary, why use binary search O(log n) instead of just dictionary/hashmap lookup O(1)? Am I missing something? Second question: You can do binary search without a tree, so what is up with the tree? What do you gain from using a tree data structure?

  • @JoEl-jx7dm
    @JoEl-jx7dm หลายเดือนก่อน +1

    I was today years old to understand hashmaps are also called dictionaries 😅

  • @oddysay
    @oddysay 2 ปีที่แล้ว +1

    Amazing video !!! keep up the great work learned alot and love the backgroudn music !!

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      Thanks dude! You’re gonna hit 100 soon, everyone go sub to this guy^!

    • @oddysay
      @oddysay 2 ปีที่แล้ว

      @@Codebagel haha i appreciate you !!

  • @jaerik99
    @jaerik99 2 ปีที่แล้ว +1

    Great video, Mr. Bagel!

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      Thank you, Mr. Wellman!

  • @spiritual5750
    @spiritual5750 2 ปีที่แล้ว +1

    You nailed it. Can you make more of such videos on DSA

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Definitely! I’ll be making videos on all of them!

    • @spiritual5750
      @spiritual5750 2 ปีที่แล้ว +1

      @@Codebagel Thanks, really appreciate your hard work for helping out.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      @@spiritual5750 no worries! I’m glad people are enjoying my content! Make sure you hit the 🔔 button to turn on notifications so you see my videos when I upload next. Thanks so much!

    • @spiritual5750
      @spiritual5750 2 ปีที่แล้ว

      @@Codebagel i land on your channel from your earlier videos. Already subbed and notification on. 😀

  • @yogidalge
    @yogidalge ปีที่แล้ว

    Very helpful, thanks! Can't wait for more videos! Keep it up!

  • @mace90
    @mace90 11 หลายเดือนก่อน

    thanks for ur videos, they are well made and easy to understand!

  • @ioanacrisan3684
    @ioanacrisan3684 9 หลายเดือนก่อน

    Awesome, thank you for all the great work!!!

  • @aninditabatra3810
    @aninditabatra3810 ปีที่แล้ว +2

    Great video! Love the content :)

  • @letmayank
    @letmayank 6 หลายเดือนก่อน +2

    5:31, the realization caught me.

  • @Astrovic1
    @Astrovic1 5 หลายเดือนก่อน +1

    why does inserting into linked lists take O(1)? dont you have to follow the adresses from the first item to the position to insert which takes O(n)?

  • @martinsanchez-hw4fi
    @martinsanchez-hw4fi 6 หลายเดือนก่อน

    Whay did you use to make the graphics?? Nice video

  • @dazleroger3006
    @dazleroger3006 2 ปีที่แล้ว +1

    This is a masterpiece, love ya videos ❤️

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Thanks so much Dazle! I’ll keep trying to make great content!

  • @jasonbelcher4476
    @jasonbelcher4476 4 หลายเดือนก่อน +1

    Good grief your videos are amazing 🎉

    • @Codebagel
      @Codebagel  4 หลายเดือนก่อน

      Thanks so much! I really appreciate all the support!

  • @vivekvitthaljadhav
    @vivekvitthaljadhav 2 ปีที่แล้ว +1

    And thanks to you also buddy for such a quality content.

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว +1

      You’re welcome! Thank you for the support :)

  • @ctoid
    @ctoid 2 ปีที่แล้ว +1

    Very great explainations

  • @drewwilson8756
    @drewwilson8756 8 หลายเดือนก่อน +2

    I am a simple person who likes simple pictures.

  • @shraddha3506
    @shraddha3506 24 วันที่ผ่านมา

    Amazing !! Thanks.

  • @lnphani
    @lnphani 9 หลายเดือนก่อน

    Why did not I find this video sooner !!!

  • @maxvell77
    @maxvell77 4 หลายเดือนก่อน

    Please keep going!

  • @AlejandroLopez-kk9vu
    @AlejandroLopez-kk9vu 2 ปีที่แล้ว +1

    Thank you so much for this! Can’t wait for more!

    • @Codebagel
      @Codebagel  2 ปีที่แล้ว

      Thanks for the kind words! More coming soon :)

  • @KnowledgeisPower-cl7tq
    @KnowledgeisPower-cl7tq 6 หลายเดือนก่อน

    Fantastic Video buddy

  • @valerioharvey7289
    @valerioharvey7289 หลายเดือนก่อน

    thanks for this

  • @ZombieJDC-z4i
    @ZombieJDC-z4i 2 หลายเดือนก่อน

    In a DAW like FL Studio, are the numbers of beats per measure and tracks arrays or linked lists?

  • @Math_kru_earng
    @Math_kru_earng 5 หลายเดือนก่อน +1

    thanks!!