1480. Running Sum of 1d ArrayLeetCodehttps://leetcode.com/problems/running-sum-of-1d-array/ Running Sum of 1d Array - LeetCodeCan you solve this real interview question? Running Sum of 1d Array - Given an array nums. We define a running sum of an array as runningSum[i] = sum(nums[0]…nums[i]). Return the running sum of nums. Example 1: Input: nums = [1,2,3,4] Output: [1,3,6,leetcode.com Given a..