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

计算两个整数列表代表的数字之和,返回列表

时间:2019-03-03 09:37:06      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:div   输出   ret   turn   code   数字   列表   返回   add   

 

class Solution(object):
    def addTwoNumbers(self, l1, l2):
        k1=‘‘.join(list(map(str, l1)))
        k2=‘‘.join(list(map(str, l2)))
        nsum=int(k1)+int(k2)
        res=list(str(nsum))
        return list(map(int,res))

l1=[1,2,3]
l2=[1,1,1]
x=Solution()
print(x.addTwoNumbers(l1,l2))

输出

[2, 3, 4]

 

计算两个整数列表代表的数字之和,返回列表

标签:div   输出   ret   turn   code   数字   列表   返回   add   

原文地址:https://www.cnblogs.com/sea-stream/p/10463764.html

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