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
Prateek SrivastavaforPrateek Srivastava's blogprateeksrivastava.hashnode.net·Feb 3, 2023Is Lower Time Complexity Always Better?Introduction When analyzing algorithms, the time complexity is a commonly used metric to compare and evaluate the efficiency of different approaches. Time complexity describes the amount of time an algorithm takes to complete its task, based on the s...Discuss·21 likes·127 readsTime Complexity
Syed Rafsan RaiyanforRafsan's Blogsrafsan.hashnode.net·Dec 9, 2022Time and Space Complexity👉 Time Complexity What is Time complexity? The time complexity of an algorithm quantifies the amount of time taken by an algorithm to run as a function of the length of the input. Note that the time to run is a function of the input and not the act...Discuss·13 likes·92 readsTime Complexity
Rahul Kumar Shrinivas Reddyforrahulblog.hashnode.net·Apr 19, 2023Time is Money: How Time Complexity Impacts the Performance of Your CodeAs a programmer, you're likely familiar with the concept of algorithms, which are sets of instructions for solving a particular problem. But have you ever stopped to consider how efficient your algorithms are? That's where Time complexity comes in. T...Discuss·2 likes·27 readsDSA
JaeChan LeeforJaello World!jaello-world.hashnode.net·Apr 13, 2023About Time Complexity#1 Time, Space Complexity Algorithm complexity is a measure of its performance, which can be evaluated through two metrics: time complexity and space complexity. Time complexity refers to the total number of operations used by an algorithm, while spa...DiscussTime Complexity
Rohini SinghforRohini's Blogrohinii.hashnode.net·Apr 1, 2023All about TIME COMPLEXITYTime complexity is a measure of the amount of time required to run an algorithm or solve a problem as the input size grows larger. It is typically expressed in terms of the "Big O" notation, which gives an upper bound on the rate of growth of the run...Discuss·1 likeTime Complexity
Pranav SharmaforPranav's Blogpranav-sharma.hashnode.net·Mar 19, 2023Time ComplexityTime Complexity is the study of the efficiency of algorithms. It tells us how much time is taken by an algorithm to process a given input. A developer needs to know the time complexity of a program, to make efficient use of resources. Understanding t...DiscussDSA
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
Sonal Wadhavaneforsonal216 blogsonal216.hashnode.net·Mar 15, 2023Time Complexity➢ Time complexity : In computer science, the time complexity is the computational complexity that describes the amount of computer time it takes to run an algorithm. ➢ Example : • A lot of students get confused while understanding the concept of time...DiscussTime Complexity
Liaichi_MustaphaforLiaichi's Blogit-lounge.hashnode.net·Mar 12, 2023BEFORE Programming 101 : Data structuresConcepts : DATA : In the context of computer science, "data" in data structures refers to the pieces of information that a program needs to store and manipulate in order to perform its tasks. Operations : In data structures, "operations" refer to the...Discuss·28 readsdata structures
Brian Enos OtienoforBrian's Blogbrianenosotieno.hashnode.net·Mar 9, 2023Security Automation Into CI /CD PipelinesIntroduction Popular data breaches and service outages are showing us that security cannot be a one-off time job, is negligible and can be executed only at the end of the final stages of application development. Otherwise, it’s not only affecting the...Discuss·2 likes·66 readsDevSecOpsSecurity
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
Yash Karankeforkarankeyashkarankeyash.hashnode.net·Mar 2, 2023Time-complexity in switch/case vs if/elseWhen it comes to making decisions in programming, we often rely on conditional statements such as if/else and switch/case. These statements help us make decisions based on certain conditions and execute different code accordingly. In JavaScript, both...Discuss·73 readsGeneral Programming