1736. 替换隐藏数字得到的最晚时间 Posted on 2022-06-29 | In leetcode Words count in article: 321 | Reading time ≈ 1 题目给你一个字符串 time ,格式为 hh:mm(小时:分钟),其中某几位数字被隐藏(用 ? 表示)。 有效的时间为 00:00 到 23:59 之间的所有时间,包括 00:00 和 23:59 。 替换 time 中隐藏的数字,返回你可以得到的最晚有效时间。 示例1:123输入:time = & ... Read more »
1736. 替换隐藏数字得到的最晚时间 Posted on 2022-06-29 | In leetcode Words count in article: 397 | Reading time ≈ 1 题目表: Employees 12345678910111213+-------------+------+| Column Name | Type |+-------------+------+| emp_id | int || event_day | date || in_tim ... Read more »
1742. 盒子中小球的最大数量 Posted on 2022-06-29 | In leetcode Words count in article: 474 | Reading time ≈ 2 题目你在一家生产小球的玩具厂工作,有 n 个小球,编号从 lowLimit 开始,到 highLimit 结束(包括 lowLimit 和 highLimit ,即 n == highLimit - lowLimit + 1)。另有无限数量的盒子,编号从 1 到 infinity 。 你的工作是将每 ... Read more »
1748. 唯一元素的和 Posted on 2022-06-29 | In leetcode Words count in article: 341 | Reading time ≈ 1 题目给你一个整数数组 nums 。数组中唯一元素是那些只出现 恰好一次 的元素。 请你返回 nums 中唯一元素的 和 。 示例1:123输入:nums = [1,2,3,2]输出:4解释:唯一元素为 [1,3] ,和为 4 。 示例2:123输入:nums = [1,1,1,1,1]输出:0解释 ... Read more »
1752. 检查数组是否经排序和轮转得到 Posted on 2022-06-29 | In leetcode Words count in article: 300 | Reading time ≈ 1 题目给你一个数组 nums 。nums 的源数组中,所有元素与 nums 相同,但按非递减顺序排列。 如果 nums 能够由源数组轮转若干位置(包括 0 个位置)得到,则返回 true ;否则,返回 false 。 源数组中可能存在 重复项 。 注意:我们称数组 A 在轮转 x 个位置后得到长度相同 ... Read more »
1757. 可回收且低脂的产品 Posted on 2022-06-29 | In leetcode Words count in article: 227 | Reading time ≈ 1 题目表:Products 12345678910+-------------+---------+| Column Name | Type |+-------------+---------+| product_id | int || low_fats | enum || ... Read more »
1758. 生成交替二进制字符串的最少操作数 Posted on 2022-06-29 | In leetcode Words count in article: 344 | Reading time ≈ 1 题目给你一个仅由字符 '0' 和 '1' 组成的字符串 s 。一步操作中,你可以将任一 '0' 变成 '1' ,或者将 '1' 变成 '0' 。 交替字符串 定义为:如果字符串中不存在相邻两个字符相等的情 ... Read more »
1763. 最长的美好子字符串 Posted on 2022-06-29 | In leetcode Words count in article: 512 | Reading time ≈ 2 题目当一个字符串 s 包含的每一种字母的大写和小写形式 同时 出现在 s 中,就称这个字符串 s 是 美好 字符串。比方说,"abABB" 是美好字符串,因为 'A' 和 'a' 同时出现了,且 'B' 和 'b' ... Read more »
1768. 交替合并字符串 Posted on 2022-06-29 | In leetcode Words count in article: 340 | Reading time ≈ 1 题目给你两个字符串 word1 和 word2 。请你从 word1 开始,通过交替添加字母来合并字符串。如果一个字符串比另一个字符串长,就将多出来的字母追加到合并后字符串的末尾。 返回 合并后的字符串 。 示例1:123456输入:word1 = "abc", word2 = ... Read more »
1773. 统计匹配检索规则的物品数量 Posted on 2022-06-29 | In leetcode Words count in article: 418 | Reading time ≈ 2 题目给你一个数组 items ,其中 items[i] = [typei, colori, namei] ,描述第 i 件物品的类型、颜色以及名称。 另给你一条由两个字符串 ruleKey 和 ruleValue 表示的检索规则。 如果第 i 件物品能满足下述条件之一,则认为该物品与给定的检索规则 ... Read more »