leetcode 알고리즘 썸네일형 리스트형 [LeetCode] Running Sum of 1d Array class Solution { public int[] runningSum(int[] nums) { int[] answer = new int[nums.length]; int sum = 0; for(int i=0; i 더보기 이전 1 다음