[LeetCode][Python][C#]刷题记录 1. 两数之和
2018-09-05 07:57:08来源:博客园 阅读 ()
第一次做发现很多小细节以前都没注意过,感觉还是蛮头疼的。
题目:
给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。
你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。
根据题目要求【你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。】
所以我们的思路就有了,只要每次循环只遍历后面的就可以啦,这样结果就不会重复惹。
上代码
python
class Solution: def twoSum(self, nums, target): """ :type nums: List[int] :type target: int :rtype: List[int] """ for i in nums: for j in range(nums.index(i) + 1, len(nums)): if i + nums[j] == target: list = [nums.index(i),j] return(list) nums = [2, 7, 11, 15] target = 9 a = Solution() print(a.twoSum(nums,target))
c#
(好久没用过了,如果有错误和更好的写法请评论提醒我QUQ)
public class Program { public int[] TwoSum(int[] nums, int target) { for (int i = 0; i < nums.Length; i++) { for (int j = i+1; j < nums.Length; j++) { if (nums[i] + nums[j] == target) { return new int[] { i, j }; } } } throw new ArgumentException(); } static void Main(string[] args) { int[] nums = { 2, 7, 11, 15 }; Program pro = new Program(); int[] result = pro.TwoSum(nums, 9); Console.WriteLine("[{0},{1}]",result[0],result[1]); Console.ReadKey(); } }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:面向对象--特殊成员
- python3基础之“术语表(2)” 2019-08-13
- python3 之 字符串编码小结(Unicode、utf-8、gbk、gb2312等 2019-08-13
- Python3安装impala 2019-08-13
- 小白如何入门 Python 爬虫? 2019-08-13
- python_字符串方法 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash