LeetCode
BeiShangBuZaiLai
这个作者很懒,什么都没留下…
展开
-
LeetCode.KeyboardRow
Given a List of words, return the words that can be typed using letters of alphabet on only one row’s of American keyboard like the image below.Example 1:Input: ["Hello", "Alaska", "Dad", &quo原创 2018-08-10 16:19:06 · 46204 阅读 · 0 评论 -
LeetCode.Median
给定两个大小为 m 和 n 的有序数组 nums1 和 nums2 。请找出这两个有序数组的中位数。要求算法的时间复杂度为 O(log (m+n)) 。示例 1:nums1 = [1, 3]nums2 = [2]中位数是 2.0示例 2:nums1 = [1, 2]nums2 = [3, 4]中位数是 (2 + 3)/2 = 2.5imple...原创 2018-08-10 16:19:53 · 46246 阅读 · 0 评论 -
LeetCode-The number appearing continuously
1.题目表结构-- ------------------------------ Table structure for logs-- ----------------------------DROP TABLE IF EXISTS `logs`;CREATE TABLE `logs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `n...原创 2018-08-10 16:20:36 · 46153 阅读 · 0 评论 -
LeetCode-去除数组中重复数字
给定一个整数数组 a,其中1 ≤ a[i] ≤ n (n为数组长度), 其中有些元素出现两次而其他元素出现一次。找到所有出现两次的元素。你可以不用到任何额外空间并在O(n)时间复杂度内解决这个问题吗?示例:输入:[4,3,2,7,8,2,3,1]输出:[2,3]class Solution { public List<Integer> fin...原创 2018-08-10 16:21:44 · 46627 阅读 · 0 评论 -
LeetCode-搜索二维矩阵
编写一个高效的算法来判断 m x n 矩阵中,是否存在一个目标值。该矩阵具有如下特性:每行中的整数从左到右按升序排列。每行的第一个整数大于前一行的最后一个整数。示例 1:输入:matrix = [ [1, 3, 5, 7], [10, 11, 16, 20], [23, 30, 34, 50]]target = 3输出: true示例 2:...原创 2018-08-10 16:22:19 · 46720 阅读 · 0 评论