Range Query on a List
Implement a data structure with the following methods:
RangeSum(int[] nums)constructs a new instance with the givennums.total(int i, int j)returns the sum of integers fromnumsbetween[i, j). That is,nums[i] + nums[i + 1] + ... + nums[j - 1].
Constraints
n ≤ 100,000wherenis the length ofnumsk ≤ 100,000wherekis the number of calls tototal
https://binarysearch.com/problems/Range-Query-on-a-List
Examples
Example 1
Input
- methods = 
['constructor', 'total', 'total'] - arguments = 
[[[1, 2, 5, 0, 3, 7]], [0, 3], [1, 5]] 
Output
- answer = 
[None, 8, 10] 
Explanation
r = RangeSum([1,2,5,0,3,7])
r.total(0, 3) == 8 # sum([1, 2, 5])
r.total(1, 5) == 10 # sum([2, 5, 0, 3])
      
      
Leave a comment