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

查找表_leetcode454

时间:2019-03-17 15:35:10      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:for   weight   col   etc   思路   font   return   查找表   span   

# 解题思路:字典存储计数信息 20190302 找工作期间

class Solution(object):
def fourSumCount(self, A, B, C, D):
res2 = {}
res = 0

for i in C:
for j in D:
res2[i + j] = res2.get(i + j, 0) + 1

for i in A:
for j in B:
res += res2.get(-i - j, 0)

return res

查找表_leetcode454

标签:for   weight   col   etc   思路   font   return   查找表   span   

原文地址:https://www.cnblogs.com/lux-ace/p/10546971.html

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