Answers for "java using for loop to calculate sum of arrray"

0

how to find the sum of an array in java

int [] arr = {1,2,3,4};
int sum = Arrays.stream(arr).sum(); //prints 10
Posted by: Guest on October-09-2021
0

java running sum of array

class Solution {
    public int[] runningSum(int[] nums) {
        int[] sol = new int[nums.length];
        sol[0] = nums[0];
        for(int i = 1; i < nums.length; i++) {
            sol[i] = sol[i-1] + nums[i];
        }
        return sol;
    }
}

// Example: runningSum([1,3,6,9]) = [1, 4, 10, 19] = [1, 1+3, 1+3+6, 1+3+6+9]
Posted by: Guest on March-21-2021

Code answers related to "java using for loop to calculate sum of arrray"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language