LeetCode
文章平均质量分 93
ssswill
这个作者很懒,什么都没留下…
展开
-
Leetcode第一题:两数之和(3种语言)
@](这里写自定义目录标题)Leetcode第一题:两数之和给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的 两个 整数。你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。示例:给定 nums = [2, 7, 11, 15], target = 9因为 nums[0] + nums1 = 2 + 7 = 9所以返回 ...原创 2018-12-08 22:59:46 · 40707 阅读 · 10 评论 -
LeetCode第二题:两数相加(Add Two Numbers)
LeetCode第二题:两数相加You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two num...原创 2018-12-11 19:29:49 · 4770 阅读 · 1 评论 -
LeetCode第四题:最长回文子串python
什么是回文串>>>正着读反着读都一样的字符串。做题前知识点补充:from: https://www.cnblogs.com/ForXinYuanStudyPy/p/7625830.html截图来自上面链接,其中我们方法一只需要用到红框内容。本题我打算用两种方法来做,一种是比较低级的遍历搜索,一种是动态规划。但是穿插了一种从别的地方看到的方法,很容易理解,所以放上去了...原创 2019-02-03 11:08:10 · 597 阅读 · 0 评论 -
LeetCode第三题:无重复字符的最长子串python解法
英文题介绍:class Solution(object): def lengthOfLongestSubstring(self, s): """ :type s: str :rtype: int """ temp = '' length = 0 for i in s: ...原创 2019-01-28 21:49:07 · 6277 阅读 · 6 评论 -
LeetCode第四题:寻找两个有序数组的中位数python解法
英文介绍:题目其实很简单。重点是对于时间复杂度的要求。关于这点,我会做一些分析。先看解答吧:class Solution: def findMedianSortedArrays(self, nums1, nums2): """ :type nums1: List[int] :type nums2: List[int] ...原创 2019-01-30 11:39:14 · 1649 阅读 · 1 评论