数组的动态和
2021-04-26 16:28
阅读:579
标签:数组 image loading length alt span pre div style 0.0 数组的动态和 标签:数组 image loading length alt span pre div style 原文地址:https://www.cnblogs.com/520-hahaha/p/13252727.html
class Solution {
public int[] runningSum(int[] nums) {
int temp=0;
int[] b=new int[nums.length];
for (int i = 0; i ) {
temp=temp+nums[i];
b[i]=temp;
}
return b;
}
}
评论
亲,登录后才可以留言!