1446. 连续字符 Posted on 2022-06-29 | In leetcode Words count in article: 205 | Reading time ≈ 1 题目给你一个字符串 s ,字符串的「能量」定义为:只包含一种字符的最长非空子字符串的长度。 请你返回字符串 s 的 能量。 示例1:123输入:s = "leetcode"输出:2解释:子字符串 "ee" 长度为 2 ,只包含字符 'e' ... Read more »
1455. 检查单词是否为句中其他单词的前缀 Posted on 2022-06-29 | In leetcode Words count in article: 386 | Reading time ≈ 1 题目给你一个字符串 sentence 作为句子并指定检索词为 searchWord ,其中句子由若干用 单个空格 分隔的单词组成。请你检查检索词 searchWord 是否为句子 sentence 中任意单词的前缀。 如果 searchWord 是某一个单词的前缀,则返回句子 sentence 中该 ... Read more »
1450. 在既定时间做作业的学生人数 Posted on 2022-06-29 | In leetcode Words count in article: 419 | Reading time ≈ 1 题目给你两个整数数组 startTime(开始时间)和 endTime(结束时间),并指定一个整数 queryTime 作为查询时间。 已知,第 i 名学生在 startTime[i] 时开始写作业并于 endTime[i] 时完成作业。 请返回在查询时间 queryTime 时正在做作业的学生人数 ... Read more »
1460. 通过翻转子数组使两个数组相等 Posted on 2022-06-29 | In leetcode Words count in article: 407 | Reading time ≈ 2 题目给你两个长度相同的整数数组 target 和 arr 。每一步中,你可以选择 arr 的任意 非空子数组 并将它翻转。你可以执行此过程任意次。 如果你能让 arr 变得与 target 相同,返回 True;否则,返回 False 。 示例1:1234567输入:target = [1,2,3, ... Read more »
1464. 数组中两元素的最大乘积 Posted on 2022-06-29 | In leetcode Words count in article: 249 | Reading time ≈ 1 题目给你一个整数数组 nums,请你选择数组的两个不同下标 i 和 j,使 (nums[i]-1)*(nums[j]-1) 取得最大值。 请你计算并返回该式的最大值。 示例1:123输入:nums = [3,4,5,2]输出:12 解释:如果选择下标 i=1 和 j=2(下标从 0 开始),则可以获 ... Read more »
1470. 重新排列数组 Posted on 2022-06-29 | In leetcode Words count in article: 214 | Reading time ≈ 1 题目给你一个数组 nums ,数组中有 2n 个元素,按 [x1,x2,...,xn,y1,y2,...,yn] 的格式排列。 请你将数组按 [x1,y1,x2,y2,...,xn,yn] 格式重新排列,返回重排后的数组。 示例1:123输入:nums = [2,5,1,3,4,7], n = 3输 ... Read more »
1475. 商品折扣后的最终价格 Posted on 2022-06-29 | In leetcode Words count in article: 394 | Reading time ≈ 1 题目给你一个数组 prices ,其中 prices[i] 是商店里第 i 件商品的价格。 商店里正在进行促销活动,如果你要买第 i 件商品,那么你可以得到与 prices[j] 相等的折扣,其中 j 是满足 j > i 且 prices[j] <= prices[i] 的 最小下标 , ... Read more »
1480. 一维数组的动态和 Posted on 2022-06-29 | In leetcode Words count in article: 193 | Reading time ≈ 1 题目给你一个数组 nums 。数组「动态和」的计算公式为:runningSum[i] = sum(nums[0]…nums[i]) 。 请返回 nums 的动态和。 示例1:123输入:nums = [1,2,3,4]输出:[1,3,6,10]解释:动态和计算过程为 [1, 1+2, 1+2+3, ... Read more »
1484. 按日期分组销售产品 Posted on 2022-06-29 | In leetcode Words count in article: 284 | Reading time ≈ 1 题目表 Activities: 12345678+-------------+---------+| 列名 | 类型 |+-------------+---------+| sell_date | date || product | varchar |+--- ... Read more »
1486. 数组异或操作 Posted on 2022-06-29 | In leetcode Words count in article: 199 | Reading time ≈ 1 题目给你两个整数,n 和 start 。 数组 nums 定义为:nums[i] = start + 2*i(下标从 0 开始)且 n == nums.length 。 请返回 nums 中所有元素按位异或(XOR)后得到的结果。 示例1:1234输入:n = 5, start = 0输出:8解释: ... Read more »