码迷,mamicode.com
首页 > 其他好文 > 详细

238 Product of Array Except Self

时间:2015-07-17 08:22:51      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:

238 Product of Array Except Self 

从头部 和 尾部各扫描一遍

class Solution:
    # @param {integer[]} nums
    # @return {integer[]}
    def productExceptSelf(self, nums):
        ans = [1]
        for i in range(0, len(nums)-1):
            ans.append(ans[-1]*nums[i])
        tmp = 1
        for i in range(len(nums)-1,-1,-1):
            ans[i] *= tmp
            tmp *= nums[i]
        return ans

 

238 Product of Array Except Self

标签:

原文地址:http://www.cnblogs.com/dapanshe/p/4653381.html

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