Skip to content

Commit 1b4919f

Browse files
authored
Update 0303-range-sum-query-immutable.js
Converted to class based.
1 parent caef263 commit 1b4919f

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

javascript/0303-range-sum-query-immutable.js

+18-17
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,26 @@
11
/**
2+
* https://leetcode.com/problems/range-sum-query-immutable/
23
* @param {number[]} nums
34
*/
4-
var NumArray = function(nums) {
5-
this.arr = nums;
6-
};
5+
class NumArray {
6+
constructor(nums) {
7+
this.arr = nums;
8+
}
79

8-
/**
9-
* https://leetcode.com/problems/range-sum-query-immutable/description/
10-
* Time O(n) | Space O(1)
11-
* @param {number} left
12-
* @param {number} right
13-
* @return {number}
14-
*/
15-
NumArray.prototype.sumRange = function(left, right) {
16-
17-
let total = 0;
18-
for(let i = left; i < right + 1; i++) {
19-
total += this.arr[i];
10+
/**
11+
* Time O(n) | Space O(1)
12+
* @param {number} left
13+
* @param {number} right
14+
* @return {number}
15+
*/
16+
sumRange(left, right) {
17+
let total = 0;
18+
for (let i = left; i < right + 1; i++) {
19+
total += this.arr[i];
20+
}
21+
return total;
2022
}
21-
return total
22-
};
23+
}
2324

2425
/**
2526
* Your NumArray object will be instantiated and called as such:

0 commit comments

Comments
 (0)