此为历史版本和 IPFS 入口查阅区,回到作品页
Zoka
IPFS 指纹 这是什么

作品指纹

LeetCode 1480. Running Sum of 1d Array (Java)

Zoka
·
·

class Solution {

   public int[] runningSum(int[] nums) {

     for(int i=1; i<nums.length; i++){

      nums[i]=nums[i]+nums[i-1];

    }

     return nums;

  }

}

CC BY-NC-ND 2.0 授权