上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 44 下一页
摘要: LeetCode 26. Remove Duplicates from Sorted Array (删除有序数组中的重复项) 题目 链接 https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array/ 问题描述 给你一个有序 阅读全文
posted @ 2020-02-02 20:56 cheng102e 阅读(115) 评论(0) 推荐(0) 编辑
摘要: LeetCode 796. Rotate String (旋转字符串) 题目 链接 问题描述 给定两个字符串, s 和 goal。如果在若干次旋转操作之后,s 能变成 goal ,那么返回 true 。 s 的 旋转操作 就是将 s 最左边的字符移动到最右边。 例如, 若 s = 'abcde',在 阅读全文
posted @ 2020-02-02 20:14 cheng102e 阅读(146) 评论(0) 推荐(0) 编辑
摘要: LeetCode 704. Binary Search (二分查找) 题目 链接 https://leetcode-cn.com/problems/binary-search 问题描述 给定一个 n 个元素有序的(升序)整型数组 nums 和一个目标值 target ,写一个函数搜索 nums 中的 阅读全文
posted @ 2020-02-02 18:38 cheng102e 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 961. N Repeated Element in Size 2N Array(重复 N 次的元素) 链接 https://leetcode cn.com/problems/n repeated element in size 2n array 题目 在大小为 2N 的数组 A 中有 N+1 个不 阅读全文
posted @ 2020-02-02 10:21 cheng102e 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1051. Height Checker(高度检查器) 链接 https://leetcode cn.com/problems/height checker 题目 学校在拍年度纪念照时,一般要求学生按照 非递减 的高度顺序排列。 请你返回能让所有学生以 非递减 高度排列的最小必要移动人数。 示例: 阅读全文
posted @ 2020-02-01 22:27 cheng102e 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 67. Add Binary(二进制求和) 链接 https://leetcode cn.com/problems/add binary 题目 给定两个二进制字符串,返回他们的和(用二进制表示)。 输入为非空字符串且只包含数字 1 和 0。 示例 1: 输入: a = "11", b = "1" 输 阅读全文
posted @ 2020-01-31 12:53 cheng102e 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 167. Two Sum II - Input array is sorted(两数之和 II - 输入有序数组) 链接 https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted 题目 给定一个已按照升序排列 的有序数组,找到 阅读全文
posted @ 2020-01-31 12:46 cheng102e 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 189. Rotate Array(旋转数组) 链接 https://leetcode cn.com/problems/rotate array 题目 给定一个数组,将数组中的元素向右移动 k 个位置,其中 k 是非负数。 示例 1: 输入: [1,2,3,4,5,6,7] 和 k = 3 输出: 阅读全文
posted @ 2020-01-31 12:39 cheng102e 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 965. Univalued Binary Tree(单值二叉树) 链接 https://leetcode cn.com/problems/univalued binary tree 题目 如果二叉树每个节点都具有相同的值,那么该二叉树就是单值二叉树。 只有给定的树是单值二叉树时,才返回 true; 阅读全文
posted @ 2020-01-30 19:41 cheng102e 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 111. Minimum Depth of Binary Tree(二叉树的最小深度) 链接 https://leetcode cn.com/problems/minimum depth of binary tree/ 题目 给定一个二叉树,找出其最小深度。 最小深度是从根节点到最近叶子节点的最短路 阅读全文
posted @ 2020-01-30 19:37 cheng102e 阅读(90) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 44 下一页