FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Running State Pattern — LeetCode #1480: Running Sum of 1D Array
How-ToProgramming Languages

Running State Pattern — LeetCode #1480: Running Sum of 1D Array

via Dev.toYash Gandhi2h ago

Prerequisite: Loop Invariants — the first post in this series covers what an invariant is and how to state one. If the word "invariant" is new to you, start there. The Problem (15 seconds) Given an array nums , return an array where each element is the running sum up to that index. Input: [1, 2, 3, 4] Output: [1, 3, 6, 10] // result[0] = 1 // result[1] = 1 + 2 = 3 // result[2] = 1 + 2 + 3 = 6 // result[3] = 1 + 2 + 3 + 4 = 10 LeetCode #1480 — Running Sum of 1D Array The Obvious Mistake Most engineers look at this problem and see a loop inside a loop. "For each index, add up everything before it." That's the instinct. It's technically correct. It's also exactly the kind of thinking that produces O(n²) code when O(n) was sitting right there. // Brute force — recompute the sum from scratch for each index function runningSum ( nums : number []): number [] { const result : number [] = []; for ( let i = 0 ; i < nums . length ; i ++ ) { let sum = 0 ; for ( let j = 0 ; j <= i ; j ++ ) { sum +=

Continue reading on Dev.to

Opens in a new tab

Read Full Article
2 views

Related Articles

I have blogged about the difference between code coverage and test coverage and why it matters to distinguish between these 2.
How-To

I have blogged about the difference between code coverage and test coverage and why it matters to distinguish between these 2.

Dev.to Beginners • 5h ago

The origin story of Apple’s long-running relationship with FoxConn
How-To

The origin story of Apple’s long-running relationship with FoxConn

The Verge • 5h ago

How to Optimize Big Data Platform Costs Across the Data Lifecycle
How-To

How to Optimize Big Data Platform Costs Across the Data Lifecycle

Hackernoon • 6h ago

Switzerland — Best Crypto Exchange (2026)
How-To

Switzerland — Best Crypto Exchange (2026)

Dev.to Beginners • 9h ago

Cursor Your Dream, Part 2: How to Move From First Prompt to First Working App
How-To

Cursor Your Dream, Part 2: How to Move From First Prompt to First Working App

Hackernoon • 15h ago

Discover More Articles