mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-03 22:42:52 +08:00
存量题库数据更新
This commit is contained in:
@@ -3,21 +3,21 @@
|
||||
|
||||
|
||||
<p>Return the running sum of <code>nums</code>.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
|
||||
|
||||
|
||||
<pre>
|
||||
|
||||
<strong>Input:</strong> nums = [1,2,3,4]
|
||||
|
||||
<strong>Output:</strong> [1,3,6,10]
|
||||
|
||||
|
||||
<strong>Explanation:</strong> Running sum is obtained as follows: [1, 1+2, 1+2+3, 1+2+3+4].</pre>
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user