上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 68 下一页
摘要: 题目如下: You are given two strings s and t of the same length. You want to change s to t. Changing the i-th character of s to i-th character of t costs | 阅读全文
posted @ 2019-10-02 06:34 seyjs 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 题目如下: Given an array of integers arr, write a function that returns true if and only if the number of occurrences of each value in the array is unique 阅读全文
posted @ 2019-10-02 06:25 seyjs 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 题目如下: In a given array nums of positive integers, find three non-overlapping subarrays with maximum sum. Each subarray will be of size k, and we want 阅读全文
posted @ 2019-10-02 06:23 seyjs 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 题目如下: 力扣团队买了一个可编程机器人,机器人初始位置在原点(0, 0)。小伙伴事先给机器人输入一串指令command,机器人就会无限循环这条指令的步骤进行移动。指令有两种: U: 向y轴正方向移动一格R: 向x轴正方向移动一格。不幸的是,在 xy 平面上还有一些障碍物,他们的坐标用obstacl 阅读全文
posted @ 2019-09-29 09:47 seyjs 阅读(358) 评论(0) 推荐(0) 编辑
摘要: 题目如下: 小A 和 小B 在玩猜数字。小B 每次从 1, 2, 3 中随机选择一个,小A 每次也从 1, 2, 3 中选择一个猜。他们一共进行三次这个游戏,请返回 小A 猜对了几次? 输入的guess数组为 小A 每次的猜测,answer数组为 小B 每次的选择。guess和answer的长度都等 阅读全文
posted @ 2019-09-29 09:42 seyjs 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 题目如下: 楼下水果店正在促销,你打算买些苹果,arr[i] 表示第 i 个苹果的单位重量。 你有一个购物袋,最多可以装 5000 单位重量的东西,算一算,最多可以往购物袋里装入多少苹果。 示例 1: 示例 2: 解题思路:排好序后,从小的装起。 代码如下: 阅读全文
posted @ 2019-09-29 09:27 seyjs 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 题目如下: 给你一个矩阵 mat,其中每一行的元素都已经按 递增 顺序排好了。请你帮忙找出在所有这些行中 最小的公共元素。 如果矩阵中没有这样的公共元素,就请返回 -1。 示例: 提示: 1 <= mat.length, mat[i].length <= 500 1 <= mat[i][j] <= 阅读全文
posted @ 2019-09-29 09:26 seyjs 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 题目如下: Write a program to find the n-th ugly number. Ugly numbers are positive integers which are divisible by a or b or c. Example 1: Example 2: Examp 阅读全文
posted @ 2019-09-25 10:36 seyjs 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 题目如下: You are given a string s, and an array of pairs of indices in the string pairs where pairs[i] = [a, b] indicates 2 indices(0-indexed) of the str 阅读全文
posted @ 2019-09-25 10:25 seyjs 阅读(1004) 评论(0) 推荐(0) 编辑
摘要: 题目如下: Given an array of distinct integers arr, find all pairs of elements with the minimum absolute difference of any two elements. Return a list of p 阅读全文
posted @ 2019-09-25 10:16 seyjs 阅读(432) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 68 下一页