Algo. Mult – Sum
Given an integer number n, return the difference between the product of its digits and the sum of its digits. Example 1: Input: n =
Given an integer number n, return the difference between the product of its digits and the sum of its digits. Example 1: Input: n =
Task
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: