文件名称:leetcode打不开-leetcode-python:练习分享我解决的leetcode
文件大小:184KB
文件格式:ZIP
更新时间:2024-07-19 19:54:52
系统开源
leetcode打不开leetcode-python 练习分享我解决的leetcode 尝试用简单的方法解决 leetcode 问题。 1. 二和 给定一个整数数组,返回两个数字的索引,使它们相加为特定目标。 您可以假设每个输入都只有一个解决方案,并且您不能两次使用相同的元素。 例子: Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1]. 解决方案 class Solution : def twoSum ( self , nums , target ): """ :type nums: List[int] :type target: int :rtype: List[int] """ cmp = nums . copy () for i in nums : cmp . pop ( 0 ) test = [ i + j for j in cmp ] if target in test : index0 = nums . index ( i ) index
【文件预览】:
leetcode-python-master
----BFS-DFS.png(194KB)
----README.md(50KB)