Odafe AlaiyaforOdafe's Viewodafe.hashnode.net·Mar 5, 2023Importance of Big O in Web developmentWe live where everything we do needs to be measured. Why? well if we need to Improve a value we need a metric to start from. For example, a sprinter measures each lap time and compares it to the previous one to improve the next one. Even so, the conc...Shashank and 1 other are discussing this2 people are discussing thisDiscuss·42 likes·184 readsWeb Development
Michael Nwoguforcodesmiles blogcodesmilesblog.hashnode.net·Jan 24, 2023The Big "O" of JavaScript Object ExplainedThis article will cover what a javascript object is, the big "O" notation, and some basic example/illustration that describes both javascript objects and the big "O" notation. Although a couple of terms will be explained it is also very important tha...Alvin and 1 other are discussing this2 people are discussing thisDiscuss·16 likes·112 readsGeneral Programming
Godswill UdohforGeed's bloggodswilludoh.hashnode.net·Sep 13, 2022Array Data StructureIntroduction Arrays are one of the most important data structures that you need to know in order to succeed as a software developer. In this article, we'll take a look at what is a data structure? The array data structure and why is it important? Wh...Discuss·11 likes·65 readsarrays
Subham Duttaforsdutta.hashnode.net·Mar 29, 2023Big O Notation: A Beginner's Guide to Time ComplexityIf you are new to Computer Science or programming, or if you have started learning Data-Structure and Algorithms, there is a high chance that you have been introduced to the term Big O Notation. As a programmer, it is essential to learn Big O if you ...Discuss·6 likesWeMakeDevs
Ayodeji OludiyaforAyodeji Oludiya devayodiya.hashnode.net·Mar 28, 2023Big O Notation: A Guide for Non-Computer ScientistsIf you've ever wondered how computer programs work and why some are faster than others, you may have heard of Big O notation. In this guide, we'll explain what Big O notation is, how it works, and why it's important, all without assuming any prior kn...Discuss#big o notation
Kehinde Jejelayeforkehindejejelaye.hashnode.net·Mar 21, 2023Big O Notation: A Simple Guide To A Terrifying TopicAs a beginner in the world of programming, it's important to understand the concept of Big O notation. Simply put, Big O notation is a mathematical representation that helps us understand how efficient an algorithm is. It's a way of measuring the sca...Discussalgorithms
Brian Enos OtienoforBrian's Blogbrianenosotieno.hashnode.net·Mar 15, 2023Time Complexity AnalysisIntroduction Time complexity is a term used in computer science to describe the amount of time required by an algorithm or a program to execute, as a function of the input size. It is often measured in terms of the number of operations performed by t...Discuss·2 likes·55 readsData Structures & Algorithms#big o notation
ZX Spectrum +2forzxspectrumplus2.hashnode.net·Mar 14, 2023ZX Life - Part 3: A Big O No(tation)This is part of a series ZX Life that uses Conway's Game of Life to figure out a modern approach to software development for the ZX Spectrum. A GitHub repository accompanies it. In Part 2 we broke down our solution to Conway's Game of Life in ZX Basi...Discuss·59 readsZX Life#big o notation
Odafe AlaiyaforOdafe's Viewodafe.hashnode.net·Mar 5, 2023Importance of Big O in Web developmentWe live where everything we do needs to be measured. Why? well if we need to Improve a value we need a metric to start from. For example, a sprinter measures each lap time and compares it to the previous one to improve the next one. Even so, the conc...Shashank and 1 other are discussing this2 people are discussing thisDiscuss·42 likes·184 readsWeb Development
Andrew SharifikiaforAndrew Sharifikia - My Techipediaalireza-sharifikia.hashnode.net·Mar 1, 2023All You Need to Know About Sorting AlgorithmsForeword Sorting algorithms are some procedural methods that we use to rearrange the elements in an ordered list of items based on a criterion. A developer must study this subject extensively and regularly because sorting algorithms are: Always pres...Discusssorting algorithms
Priyank PatelforDeveloper Talkspriyank-1623299322987.hashnode.net·Feb 24, 2023Understanding Time Complexity: A Guide for BeginnersWhat is time complexity? Time complexity is a measure of an algorithm's efficiency based on the amount of time it takes to run as the input size grows. Big O notation is typically used to represent how long an algorithm will take to complete. so, Wha...Discuss·60 readsTime Complexity
Dhawal PandyaforDhawal Codesdhawalpandya01.hashnode.net·Feb 9, 2023Demystifying Big O Notations (2/2)I'd like to give some concrete examples of how to use and apply all the mumbo jumbo I said in the last post, so here we go. The most common big O notations used are: O(1) - Constant Time: This notation represents an algorithm that takes a constant a...Discuss·33 reads#big o notation
Dhawal PandyaforDhawal Codesdhawalpandya01.hashnode.net·Feb 9, 2023Demystifying Big O Notations (1/2)You like coding right? You like maths too, right? right? So allow me to combine both to explain what the famous/infamous Big O notation is. It is like a forecast of your code, the time complexity and space complexity estimation of it. And exactly lik...Discuss·30 reads#big o notation