Skip to content

Commit 46bce45

Browse files
committed
Update count-of-range-sum.py
1 parent 3568516 commit 46bce45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/count-of-range-sum.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ def countAndMergeSort(sums, start, end, lower, upper):
5252
sums = [0] * (len(nums) + 1)
5353
for i in xrange(len(nums)):
5454
sums[i + 1] = sums[i] + nums[i]
55-
return countAndMergeSort(sums, 0, len(sums), lower, upper);
55+
return countAndMergeSort(sums, 0, len(sums), lower, upper)

0 commit comments

Comments
 (0)