Daily challenge for 2025-01-13
13. Running Sum
Write a function solve that returns the running sum of a list. The running sum is the sum of all elements up to each index.
Example:Input: [1,2,3,4]Output: [1,3,6,10]
Run this challenge interactively in Python or JavaScript when the app loads.