码迷,mamicode.com
首页 > 编程语言 > 详细

【leetcode 简单】 第七十九题 区域和检索 - 数组不可变

时间:2018-08-25 00:38:10      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:def   col   return   array   tco   numa   and   style   span   

给定一个整数数组  nums,求出数组从索引 到 j  (i ≤ j) 范围内元素的总和,包含 i,  j 两点。

示例:

给定 nums = [-2, 0, 3, -5, 2, -1],求和函数为 sumRange()

sumRange(0, 2) -> 1
sumRange(2, 5) -> -1
sumRange(0, 5) -> -3

说明:

  1. 你可以假设数组不可变。
  2. 会多次调用 sumRange 方法。
class NumArray:

    def __init__(self, nums):
        """
        :type nums: List[int]
        """
        self.data=nums

    def sumRange(self, i, j):
        """
        :type i: int
        :type j: int
        :rtype: int
        """
        return sum(self.data[i:j+1])
        


# Your NumArray object will be instantiated and called as such:
# obj = NumArray(nums)
# param_1 = obj.sumRange(i,j)

 

【leetcode 简单】 第七十九题 区域和检索 - 数组不可变

标签:def   col   return   array   tco   numa   and   style   span   

原文地址:https://www.cnblogs.com/flashBoxer/p/9532424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!