- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我为两个求和问题设计了三种解法
Given all arrays of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
一个是操作数据结构
class Solution1(): #Manipulate Data
def twoSum(self, nums: List[int], target: int) -> List[List[int]]:
nums_d = {}
couples = []
#O(n)
for i in range(len(nums)):
nums_d.setdefault(nums[i], []).append(i)
for i in range(len(nums)):
complement = target - nums[i]
nums_d[nums[i]].pop(0) #remove the fixer
result = nums_d.get(complement)#hash table to search
#if j is not Nne and j is not empty.
if result: #if exits, it should be [j]
couples.append([nums[i], complement])
return couples
其次是多条件检查
class Solution2: #Double Pass Approach
def twoSum(self, nums, target) -> List[List[int]]:
"""
:type nums: List[int]
:type target: int
"""
if len(nums) < 2:
return []
couples = []
nums_d:dict = {}
for i in range(len(nums)):
#nums_d.setdefault(nums[i], []).append(i)
nums_d[nums[i]] = i
for i in range(len(nums)):
complement = target - nums[i]
# nums_d[nums[i]].pop(0) #remove the fixer
if nums_d.get(complement) != None and nums_d.get(complement) != i:
couples.append([nums[i], complement])
return couples
第三种只操作索引
class Solution: 3#Single Pass Approach
def twoSum(self, nums, target) -> List[List[int]]:
"""
:type nums: List[int]
:type target: int
"""
nums_d:dict = {}
couples = []
if len(nums) < 2:
return []
for i in range(len(nums)):
complement = target - nums[i]
logging.debug(f"complement: {complement}")
logging.debug(f"Check: {nums_d.get(complement)}")
if nums_d.get(complement) != None:
# couples.append([i, nums_d.get(complement)])
couples.append([nums[i], complement])
nums_d[nums[i]] = i
logging.debug(f"nums_d: {nums_d}")
return couples
和我的测试用例
class TestCase(unittest.TestCase):
# logging.debug("Class TestCase started.")
"""
Test for 'twoSum.py'
"""
def setUp(self):
self.solution = Solution1()
self.solution2 = Solution2()
self.solution3 = Solution3()
def test_two_sum3(self):
#random is present
target = 30
nums = random.sample(range(20), k=20)
print(f"\ntarget: {target} \nnums: {nums}")
#Input no-replacement nums
print('Solution Length:', len(self.solution.twoSum(nums, target)))
print('result:', self.solution.twoSum(nums, target))
print('Solution2 Length:', len(self.solution2.twoSum(nums, target)))
print('result2:', self.solution2.twoSum(nums, target))
print('Solution3 Length:', len(self.solution3.twoSum(nums, target)))
print('result3:', self.solution3.twoSum(nums, target))
unittest.main()
得到结果
nums: [8, 0, 2, 15, 18, 5, 4, 14, 3, 12, 17, 19, 11, 10, 6, 16, 7, 13, 1, 9]
Solution Length: 4
result: [[18, 12], [14, 16], [17, 13], [19, 11]]
Solution2 Length: 8
result2: [[18, 12], [14, 16], [12, 18], [17, 13], [19, 11], [11, 19], [16, 14], [13, 17]]
Solution3 Length: 4
result3: [[12, 18], [11, 19], [16, 14], [13, 17]]
.
----------------------------------------------------------------------
Ran 3 tests in 0.001s
我是解决方案 2 的粉丝。
如何重写if nums_d.get(complement) != None and nums_d.get(complement) != i:
避免重复?
最佳答案
首先我想说,你的解决方案与两个和问题的陈述不完全匹配。
You may assume that each input would have exactly one solution, and you may not use the same element twice.
所以实际上,你不需要记录多个结果,只需找到并返回即可。
根据您的解决方案和测试用例,我假设您的场景适用于具有多个结果并忽略重复对的数据。
我想出两种方法来改善您的 Solution2
,我也优化了你的代码,你可以对比学习评论:
set
和 sorted pair
删除重复项:class Solution4:
def twoSum(self, nums, target) -> List[List[int]]:
if len(nums) < 2:
return []
couples = set()
nums_d = {v: i for i, v in enumerate(nums)} # init by dict comprehension
for i, v in enumerate(nums): # enumerate is better here
complement = target - v
if nums_d.get(complement, i) != i: # use sentinel, more concise
# if complement in nums_d and nums_d[complement] != i: # more understandable
couples.add(tuple(sorted((nums[i], complement)))) # need immutable in set
return list(map(list, couples)) # convert back to list
complement >= v
的对(排序对),比上面更有效。 注意:此解决方案不会通过输入中 [15, 15] 之类的情况,我只是假设没有这样的边缘情况,
因为您所有的 3 个原始解决方案也不会通过。
class Solution5:
def twoSum(self, nums, target) -> List[List[int]]:
if len(nums) < 2:
return []
couples = []
nums_d = {v: i for i, v in enumerate(nums)} # init by dict comprehension
for i, v in enumerate(nums): # enumerate is better here
complement = target - v
if complement >= v:
if nums_d.get(complement, i) != i: # use sentinel, more concise
# if complement in nums_d and nums_d[complement] != i: # more understandable
couples.append([v, complement])
return couples
顺便说一句,我是Solution3
的粉丝,它在遍历时更新索引,这是一种常用技术,使用较少的额外空间和一次遍历。
希望对您有所帮助,如果您还有其他问题,请发表评论。 :)
关于python - 检查多个条件以避免在 twoSum 解决方案中重复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55309551/
我只是想知道要安装哪个版本的 Visual Studio 2010(专业版或高级版)提示升级项目.. 项目包括:asp.net mvc、数据库和silverlight。 最佳答案 通常,由不同版本的相
几种通过 iproute2 来打通不同节点间容器网络的方式 几种通过 iproute2 来打通不同节点间容器网络的方式 host-gw ipip vxlan 背景 之前由于需
目录 前言 1、TypeHandler 简介 1.1转换步骤 1.2转换规则 2、JSON 转换 3、枚举转换 4、文章小结
目录 前言 1、常见 key-value 2、时效性强 3、计数器相关 4、高实时性 5、排行榜系列 6、文章小结 前言 在笔者 3 年的
目录 前言 四、技术选型 五、后端接口设计 5.1业务系统接口 5.2App 端接口 六、关键逻辑实现 6.1Red
目录 前言 一、需求分析 1.1发送通知 1.2撤回通知 1.3通知消息数 1.4通知消息列表 二、数据模型设计
目录 前言 一、多租户的概念 二、隔离模式 2.1独立数据库模式 2.2共享数据库独立数据架构 2.3共享数据库共享数据架构
导读: 虽然锁在一定程度上能够解决并发问题,但稍有不慎,就可能造成死锁。本文介绍死锁的产生及处理。 死锁的产生和预防 发生死锁的必要条件有4个,分别为互斥条件、不可剥夺条件、请求与保持条件和循环等待条
在浏览网页后,我找不到任何功能来执行此操作,我有可行的个人解决方案。也许它对某人有用。 **使用 Moment 插件转换日期。***moment(currentPersianDate).clone()
是否有一种解决方案可以很好地处理数字(1-10)手写?我试过tesseract,但我得到的只是垃圾。 理想情况下是 OSS,但商业也可以。 最佳答案 OpenCV 现在带有手写数字识别 OCR 示例。
在服务器应用程序上,我们有以下内容:一个称为 JobManager 的单例类。另一个类,Scheduler,不断检查是否需要向 JobManager 添加任何类型的作业。 当需要这样做时,调度程序会执
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 5年前关闭。 Improve this qu
当您尝试从 GitHub 存储库安装某些 R 包时 install_github('rWBclimate', 'ropensci') 如果您遇到以下错误: Installing github repo
问题在以下链接中进行了描述和演示: Paul Stovell WPF: Blurry Text Rendering www.gamedev.net forum Microsoft Connect: W
我正在寻找一种解决方案,使用标准格式 a × 10 b 在科学记数法下格式化 R 中的数字。一些同行评审的科学期刊都要求这样做,并且手动修改图表可能会变得乏味。 下面是 R 标准“E 表示法”的示例,
已编辑解决方案(如下...) 我有一个启动画面,它被打包到它自己的 jar 中。它有效。 我可以通过以下方式从另一个 java 应用程序内部调用 Splash.jar: Desktop.getDesk
什么是创建像 PageFlakes 或 iGoogle 这样的门户网站的好框架/包? ?我们希望创建一个为员工提供 HR 服务的员工/HR 门户,但我们也需要一种足够灵活的产品,以便我们可以使用它来为
我正在寻找一种解决方案,使用标准格式 a × 10 b 在科学记数法下格式化 R 中的数字。一些同行评审的科学期刊都要求这样做,并且手动修改图表可能会变得乏味。 下面是 R 标准“E 表示法”的示例,
如何将 solr 与 heritrix 集成? 我想使用 heritrix 归档一个站点,然后使用 solr 在本地索引和搜索该文件。 谢谢 最佳答案 使用 Solr 进行索引的问题在于它是一个纯文本
完整日历不包含工作时间功能选项(在任何一天的议程 View 中选择第一行和最后一行 - 例如公司不工作)。我做到了类似的事情: viewDisplay: function(view){
我是一名优秀的程序员,十分优秀!