Skip to content

Commit ac1bc3f

Browse files
committed
303 前序和
1 parent f72f6e5 commit ac1bc3f

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

303.ts

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/*
2+
* @lc app=leetcode.cn id=303 lang=typescript
3+
*
4+
* [303] 区域和检索 - 数组不可变
5+
*/
6+
7+
// @lc code=start
8+
class NumArray {
9+
sum = []
10+
constructor(nums: number[]) {
11+
let init = 0;
12+
// sum:0,0; sum:1, num[0], sum:1, num{0 + 1}
13+
this.sum = new Array(nums.length + 1).fill(0)
14+
nums.map((n, idx) => {
15+
this.sum[idx + 1] = init + n
16+
init = this.sum[idx + 1]
17+
})
18+
console.log(this.sum)
19+
20+
}
21+
22+
sumRange(left: number, right: number): number {
23+
// sum[2] - sum[0] = [0,1,2] - 0
24+
// 2-5 = sum[5]- sum[2] = [0,1,2,3,4,] - [0,1,2,] = [ 3,4]
25+
//
26+
return this.sum[right + 1] - this.sum[left]
27+
}
28+
}
29+
30+
/**
31+
* Your NumArray object will be instantiated and called as such:
32+
* var obj = new NumArray(nums)
33+
* var param_1 = obj.sumRange(left,right)
34+
*/
35+
// @lc code=end
36+
37+
38+
let numArray = new NumArray([-2, 0, 3, -5, 2, -1]);
39+
console.log(numArray.sumRange(0, 2)); // return 1 ((-2) + 0 + 3)
40+
console.log(numArray.sumRange(2, 5)); // return -1 (3 + (-5) + 2 + (-1))
41+
console.log(numArray.sumRange(0, 5)); // return -3 ((-2) + 0 + 3 + (-5) + 2 + (-1))

0 commit comments

Comments
 (0)