852. 山脉数组的峰顶索引 Posted on 2018-08-29 | In leetcode Words count in article: 371 | Reading time ≈ 1 题目我们把符合下列属性的数组 A 称作山脉: A.length >= 3 存在 0 < i < A.length - 1 使得A[0] < A[1] < ... A[i-1] < A[i] > A[i+1] > ... > A[A.lengt ... Read more »
867. 转置矩阵 Posted on 2018-08-29 | In leetcode Words count in article: 211 | Reading time ≈ 1 题目给定一个矩阵 A, 返回 A 的转置矩阵。 矩阵的转置是指将矩阵的主对角线翻转,交换矩阵的行索引与列索引。 示例1:12输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]输出:[[1,4,7],[2,5,8],[3,6,9]] 示例2:12输入:matrix = [[1 ... Read more »
1.两数之和 Posted on 2018-08-28 | In leetcode Words count in article: 887 | Reading time ≈ 4 题目给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。 你可以按任意顺序返回答案。 示例1:123输入:nums = [ ... Read more »
9.回文数 Posted on 2018-08-28 | In leetcode Words count in article: 315 | Reading time ≈ 1 题目判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 示例1:12输入: 121输出: true 示例2:123输入: -121输出: false解释: 从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。 示例3:123输入: ... Read more »
67.二进制求和 Posted on 2018-08-28 | In leetcode Words count in article: 302 | Reading time ≈ 1 题目给定两个二进制字符串,返回他们的和(用二进制表示)。 输入为非空字符串且只包含数字 1 和 0。 示例1:12输入: a = "11", b = "1"输出: "100" 示例2:12输入: a = "1010", ... Read more »
69. x 的平方根 Posted on 2018-08-28 | In leetcode Words count in article: 525 | Reading time ≈ 2 题目实现 int sqrt(int x) 函数。 计算并返回 x 的平方根,其中 x 是非负整数。 由于返回类型是整数,结果只保留整数的部分,小数部分将被舍去。 示例1:12输入: 4输出: 2 示例2:1234输入: 8输出: 2说明: 8 的平方根是 2.82842..., 由于返回类 ... Read more »
197. 上升的温度 Posted on 2018-08-28 | In leetcode Words count in article: 120 | Reading time ≈ 1 题目给定一个 Weather 表,编写一个 SQL 查询,来查找与之前(昨天的)日期相比温度更高的所有日期的 Id。 12345678+---------+------------------+------------------+| Id(INT) | RecordDate(DATE) | Tem ... Read more »
561.数组拆分 I Posted on 2018-08-28 | In leetcode Words count in article: 280 | Reading time ≈ 1 题目给定长度为 2n 的整数数组 nums ,你的任务是将这些数分成 n 对, 例如(a1, b1), (a2, b2), ..., (an, bn) ,使得从 1 到 n 的 min(ai, bi) 总和最大。 返回该 最大总和 。 示例1:1234567输入:nums = [1,4,3,2]输出 ... Read more »