Coding Hives
 Coding Hives
  • Видео 70
  • Просмотров 12 217

Видео

Big O Notation Made Easy: Mastering Time and Space Complexity
Просмотров 5264 часа назад
Ever wondered how to measure the efficiency of your code? 🤔 In this video, we break down Big O Notation in the simplest way possible! Learn how algorithms grow with input size and explore common complexities like O(1), O(log n), O(n), and more-step by step, with Python examples. 🐍
Stacks: Build Undo,Browser History ! ടെക്സ്റ്റ് എഡിറ്ററുകളിലും ബ്രൗസറുകളിലും സ്റ്റാക്ക് എങ്ങനെ 🤔
Просмотров 1,1 тыс.19 часов назад
Ready to level up your coding skills? Dive into the world of stacks with this beginner-friendly guide! 🌟 Learn what stacks are, how they work (LIFO in action!), and their real-world applications. Watch as we implement full examples like a text editor with an undo feature, browser history navigation, and more!
This AI Will Revolutionize Your Coding in VS Code! 😱 | Amazon Q Demo
Просмотров 44321 день назад
Say goodbye to endless debugging, confusing legacy code, and tedious documentation! 🚀 In this video, I show you how Amazon Q works its magic inside VS Code to instantly explain code, generate functions, catch bugs, and write perfect documentation. Whether you're a beginner or a pro, this AI assistant will make your coding life 10x easier! 😎💻 Watch till the end to see how Amazon Q can supercharg...
3.Algorithm, Space&Time Complexities-with RealLife Examples|ഡാറ്റാ സ്ട്രക്ചർ എളുപ്പത്തിൽ മനസിലാക്കാം
Просмотров 16221 день назад
In this video, we explore the fundamental concept of algorithms and dive into the crucial aspects of space and time complexity. Whether you're a beginner or someone looking to strengthen your programming basics, this video explains these concepts in the simplest way possible, using real-life examples that everyone can relate to! What an algorithm is and why it's important. The difference betwee...
2.Types Of Data Structure-Explained with RealLife Examples|ഡാറ്റാ സ്ട്രക്ചർ എളുപ്പത്തിൽ മനസിലാക്കാം
Просмотров 10621 день назад
Welcome to our Data Structures Explained series! 🎉 In this video, we dive deep into Linear and Non-Linear Data Structures, breaking them down into simple, relatable concepts. You’ll learn about: Linear Structures: Arrays, Stacks, Queues, and Linked Lists Non-Linear Structures: Trees and Graphs The difference between Static and Dynamic Data Structures With real-life examples like queues at train...
#56 Python Tutorial For Beginners| Method Overriding with Examples,super(), Polymorphism,Parameters
Просмотров 13021 день назад
Confused about method overriding? Don’t worry-we’ve got you covered! 🎉 In this video, we’ll explain method overriding in the simplest terms. You’ll learn: What overriding is and how it works in Python. Why it’s important in object-oriented programming. Step-by-step examples that make it super easy to understand. Real-life analogies to connect concepts with everyday scenarios. Key rules and tips...
1.What is a Data Structure-Explained with RealLife Examples!ഡാറ്റാ സ്ട്രക്ചർ എളുപ്പത്തിൽ മനസിലാക്കാം
Просмотров 43128 дней назад
In this video, we’re diving into the world of data structures-don’t worry, I’ll keep it super simple! We’ll start by understanding what data is and why it’s important to organize it properly. You’ll learn how data structures help us organize and manage information, just like we organize things in our daily life-like your wardrobe, phone contacts, or even how you shop online! We’ll cover real-li...
#55 Python Tutorial For Beginners| Master Method Overloading:Default Args, If-Else,Multiple Dispatch
Просмотров 30228 дней назад
Want to learn method overloading in Python? In this video, we break down the concept of method overloading with easy-to-understand examples. From simple techniques using default arguments to advanced approaches with the multipledispatch library, you'll learn how to make your Python functions more flexible and dynamic. #PythonMethodOverloading #MethodOverloadingInPython #DefaultArgumentsPython #...
#54 Python Tutorial For Beginners| Master MRO (Method Resolution Order) With Real Life Examples
Просмотров 149Месяц назад
In this video, we’ll dive into the Method Resolution Order (MRO) and explain how Python determines the order of method calls in single, multilevel, and multiple inheritance. Using real-life examples ✅ What MRO is and why it’s important. ✅ How Python uses the C3 Linearization Algorithm. ✅ How to view the MRO with mro() . By the end of this video, you’ll be an MRO pro and know exactly how Python ...
#53 Python Tutorial For Beginners| Power of super()🐍| Simplify Inheritance with Real-Life Examples
Просмотров 188Месяц назад
Want to know how to make your Python code cleaner and avoid repeating yourself? Meet super(), the powerful function that lets you reuse code from parent classes, saving you time and effort! In this video, we’ll break down exactly what super() is, how it works, and why it’s so helpful for writing better code. We’ll cover: How super() makes inheritance easier to manage. Simple, real-life examples...
#52Python Tutorial For Beginners|Types of Inheritance-Single,Multiple,Multilevel,Heirarchical,Hybrid
Просмотров 118Месяц назад
Welcome to this easy-to-follow tutorial on Python Inheritance! In this video, we cover the five main types of inheritance in Python with real-life examples: Single Inheritance Multiple Inheritance Multilevel Inheritance Hierarchical Inheritance Hybrid Inheritance I break each type down with simple explanations and relatable examples to help you understand how inheritance works and how to use it...
#51 Python Tutorial For Beginners||Mastering Inheritance: Build Reusable and Flexible Code Easily!
Просмотров 200Месяц назад
In this video, I’ll break down one of the most powerful concepts in object-oriented programming. Learn how inheritance helps you reuse code, organize projects, and make your code more flexible and maintainable. I’ll guide you step-by-step with easy explanations, real-life examples
#50 Python Tutorial For Beginners||Mastering Encapsulation : Simplified with Real-World Examples!
Просмотров 277Месяц назад
Curious about how encapsulation works in Python? In this video, we break down encapsulation in simple terms with easy examples and real-life scenarios. Learn how to protect your data, control access, and understand private attributes, getters, and setters like a pro!
#49 Python Tutorial For Beginners||Mastering Classes & Objects With Real Life Examples
Просмотров 86Месяц назад
Ready to unlock the power of classes and objects in Python? This beginner-friendly tutorial covers everything you need to know-from creating your first class and understanding attributes and methods, to building objects and using them like a pro! 🎉 In this video, we break down: What are Classes and Objects? How to Create a Class and Define Attributes Adding and Using Methods Accessing and Modif...
#48 Python Coding Exercises For Beginners|| Print First N Prime Numbers
Просмотров 78Месяц назад
#48 Python Coding Exercises For Beginners|| Print First N Prime Numbers
#47 Python Tutorial For Beginners||Master Python Modules: A Beginner’s Guide to Code Reusability!
Просмотров 80Месяц назад
#47 Python Tutorial For Beginners||Master Python Modules: A Beginner’s Guide to Code Reusability!
#46 Python Tutorial For Beginners|| Scope Made Simple: Local, Global, Non Local, Builtin, Enclosing
Просмотров 91Месяц назад
#46 Python Tutorial For Beginners|| Scope Made Simple: Local, Global, Non Local, Builtin, Enclosing
#45Python Coding Exercises For Beginners||Check Palindromes (Reverse,Recursion,Two pointer,Reversed)
Просмотров 138Месяц назад
#45Python Coding Exercises For Beginners||Check Palindromes (Reverse,Recursion,Two pointer,Reversed)
#44 Python Tutorial For Beginners|| Shallow copy vs Deep copy - Understand the Difference!
Просмотров 81Месяц назад
#44 Python Tutorial For Beginners|| Shallow copy vs Deep copy - Understand the Difference!
#43 Python Tutorial For Beginners|| == vs is - Understand the Difference!
Просмотров 64Месяц назад
#43 Python Tutorial For Beginners|| vs is - Understand the Difference!
#42 Python Tutorial For Beginners|| Python sort() vs sorted() - Explained with examples
Просмотров 87Месяц назад
#42 Python Tutorial For Beginners|| Python sort() vs sorted() - Explained with examples
#41 Python Tutorial For Beginners|| append() vs extend() Difference Explained with Examples!
Просмотров 51Месяц назад
#41 Python Tutorial For Beginners|| append() vs extend() Difference Explained with Examples!
#40 Python Coding Exercises For Beginners|| Master Python List Comprehensions in 10 Easy Examples!
Просмотров 126Месяц назад
#40 Python Coding Exercises For Beginners|| Master Python List Comprehensions in 10 Easy Examples!
#39 Python Tutorial For Beginners|| Set Comprehension Made Easy with Practical Real Life Examples!
Просмотров 65Месяц назад
#39 Python Tutorial For Beginners|| Set Comprehension Made Easy with Practical Real Life Examples!
#38 Python Tutorial For Beginners|| split(), rsplit(), splitlines() & limit splits, split from right
Просмотров 169Месяц назад
#38 Python Tutorial For Beginners|| split(), rsplit(), splitlines() & limit splits, split from right
#37 Python Tutorial For Beginners || Master Python's defaultdict | Simplify Your Coding
Просмотров 104Месяц назад
#37 Python Tutorial For Beginners || Master Python's defaultdict | Simplify Your Coding
#36 Python Coding Exercises For Beginners|| 3 Easy Ways to Count Vowels(loop, comprehension, lambda)
Просмотров 79Месяц назад
#36 Python Coding Exercises For Beginners|| 3 Easy Ways to Count Vowels(loop, comprehension, lambda)
#35 Python Coding Exercises For Beginners||4Ways to Count item in a List-count,comprehension,Counter
Просмотров 107Месяц назад
#35 Python Coding Exercises For Beginners||4Ways to Count item in a List-count,comprehension,Counter
#34 Python Coding Exercises For Beginners || #6. 4 Easy Ways to Reverse a List in Python
Просмотров 90Месяц назад
#34 Python Coding Exercises For Beginners || #6. 4 Easy Ways to Reverse a List in Python

Комментарии

  • @mawcao9522
    @mawcao9522 Час назад

    വളെരെ പ്രയോജനപ്രഥമായ വീഡിയോ

  • @arthurwoolsey7499
    @arthurwoolsey7499 3 часа назад

    Engineered Arts, you can't let an advanced AI like Ameca fall in the hands of Arabs who knows what nefarious exploitation they could do with this technology.

  • @anianish2269
    @anianish2269 11 часов назад

    Very good class and nice presentation

  • @himavl6031
    @himavl6031 12 часов назад

    Informative and useful video for python learners❤

  • @KETANJASHAVANTLAL
    @KETANJASHAVANTLAL 15 часов назад

    I am a big fan of your teaching style can u start leetcode series

    • @CodingHive-mi2jp
      @CodingHive-mi2jp 13 часов назад

      I'm glad you like my teaching style, I'll definitely consider adding a LeetCode series in the future!

  • @sudipta-j2x
    @sudipta-j2x 16 часов назад

    Well explained you are the best teacher mam

  • @chithraps5700
    @chithraps5700 16 часов назад

    Good explanation raseena👏🏻👏🏻👍🏻

  • @KaathuKaathu-h2m
    @KaathuKaathu-h2m 18 часов назад

    information video very useful students thanks for sharing dear

  • @rishirajs5711
    @rishirajs5711 18 часов назад

    Thank You!

  • @Vavachi-zy7wf
    @Vavachi-zy7wf 18 часов назад

    informative video more videos please

    • @CodingHive-mi2jp
      @CodingHive-mi2jp 13 часов назад

      Thanks for watching! More videos are on their way. 👍

  • @Helicopter-m1y
    @Helicopter-m1y 18 часов назад

    very useful and informative video

  • @elooselu3968
    @elooselu3968 18 часов назад

    informative video, well explained about abstract classes and python is very easy to understand , good share

  • @playfulsaad837
    @playfulsaad837 18 часов назад

    masha allah super python tutorial for biginners well explained and well presented i like it waiting for more videos

  • @jencythomas9451
    @jencythomas9451 19 часов назад

    really very nice class very well clearly explained everything good hare dear

  • @coolbuddy6219
    @coolbuddy6219 19 часов назад

    Very helpful and useful video for python learners

  • @sheemasreeasadan8726
    @sheemasreeasadan8726 19 часов назад

    Very useful and informative video.The presentation is really very good and interesting

  • @Ann-p6l
    @Ann-p6l 19 часов назад

    Easy to understand and excellent Python Tutorial For Beginners.. clearly explained with Examples, Methods & Inheritance..

  • @Ammuappu20
    @Ammuappu20 19 часов назад

    informative video simple and clear explanations

  • @arjunshaji4298
    @arjunshaji4298 19 часов назад

    Very useful video for students during the examination time......The presentation is really very good......

  • @mylifemyrules4604
    @mylifemyrules4604 День назад

    A great video...thank you for sharing 👍

  • @nayanakp1293
    @nayanakp1293 День назад

    Very informative....Really Helpful video.

  • @aparnaappu13
    @aparnaappu13 День назад

    Excellent presentation!

  • @reviewtherealview4376
    @reviewtherealview4376 2 дня назад

    Well presented video 👌

  • @mawcao9522
    @mawcao9522 2 дня назад

    കൊള്ളാം നല്ല പ്രസന്റിഷൻ

  • @Eeman979
    @Eeman979 2 дня назад

    Maashaallah ❤ well explained

  • @himavl6031
    @himavl6031 2 дня назад

  • @Sunflower-dy8mp
    @Sunflower-dy8mp 2 дня назад

    Very useful and informative video and well explained and very good presentation

  • @anub8547
    @anub8547 2 дня назад

    perfectly expalined video. its very helpful to get the idea of big o notations

  • @elooselu3968
    @elooselu3968 2 дня назад

    informative video, well explained about big o notation , order of n , factorial ... nice presentation . will be useful for coding seekers

  • @Vavachi-zy7wf
    @Vavachi-zy7wf 2 дня назад

    informative video simple ayittu vishadhamayum avatharippichu thannathinu thanks dear

  • @LachuPradeep
    @LachuPradeep 2 дня назад

    Informative video well presenting

  • @jencythomas9451
    @jencythomas9451 2 дня назад

    really very useful and informative video you shared... well presented good sharing

  • @Helicopter-m1y
    @Helicopter-m1y 2 дня назад

    very very usefull video nice sharing

  • @cookwithlove2974
    @cookwithlove2974 2 дня назад

    Very informative and good upload

  • @KaathuKaathu-h2m
    @KaathuKaathu-h2m 2 дня назад

    very very useful and information video very well presented thanks for sharing dear

  • @VellardaKl
    @VellardaKl 2 дня назад

    Thank you for sharing

  • @Ann-p6l
    @Ann-p6l 2 дня назад

    clear and perfect video for understanding big o notation... please put next video on omega and theta notation

    • @vladdracula8148
      @vladdracula8148 2 дня назад

      I was about to comment the same thing. It'd be nice to see videos about omega and theta notations as well.

  • @playfulsaad837
    @playfulsaad837 2 дня назад

    masha allah super well presented good sharing very useful information video expecting more videos thanks for sharing

  • @SREESA-gz6nx
    @SREESA-gz6nx 2 дня назад

    useful and informative video you have shared... thanks for the share... keep posting

  • @kikbabz4442
    @kikbabz4442 2 дня назад

    "Such a clear and simple explanation of Big O Notation! 🖥✨ Makes mastering time and space complexity so much easier. Great video! 👏🚀"

  • @anianish2269
    @anianish2269 3 дня назад

    Very good presentation

  • @mawcao9522
    @mawcao9522 3 дня назад

    അവതരണം നന്നായിട്ടുണ്ട് കൊള്ളാം

  • @uaemysecondhome6341
    @uaemysecondhome6341 5 дней назад

    Very easy to understand. Well explained 👍

  • @simplymystyle8513
    @simplymystyle8513 5 дней назад

    Nicely explained 👌👌

  • @prarthanachulliyot2604
    @prarthanachulliyot2604 5 дней назад

    Very useful video

  • @anianut1479
    @anianut1479 6 дней назад

    Very informative video sharing

  • @maewchko8370
    @maewchko8370 6 дней назад

    വളെരെ നല്ല വീഡിയോ

  • @sujupathu7531
    @sujupathu7531 6 дней назад

    Nicely explained!

  • @voiceofwomen4689
    @voiceofwomen4689 6 дней назад

    Very informative video 👌

  • @anianish2269
    @anianish2269 6 дней назад

    Very good informative video sharing thank