1869. 哪种连续子字符串更长 Posted on 2022-07-01 | In leetcode Words count in article: 471 | Reading time ≈ 2 题目给你一个二进制字符串 s 。如果字符串中由 1 组成的 最长 连续子字符串 严格长于 由 0 组成的 最长 连续子字符串,返回 true ;否则,返回 false 。 例如,s = "**11**01**000**10" 中,由 1 组成的最长连续子字符串的长度是 2 ,由 ... Read more »
1873. 计算特殊奖金 Posted on 2022-07-01 | In leetcode Words count in article: 268 | Reading time ≈ 1 题目表: Employees 123456789+-------------+---------+| 列名 | 类型 |+-------------+---------+| employee_id | int || name | varchar || sa ... Read more »
1876. 长度为三且各字符不同的子字符串 Posted on 2022-07-01 | In leetcode Words count in article: 341 | Reading time ≈ 1 题目如果一个字符串不含有任何重复字符,我们称这个字符串为 好 字符串。请你返回 s 中长度为 3 的 好子字符串 的数量。 注意,如果相同的好子字符串出现多次,每一次都应该被记入答案之中。 子字符串 是一个字符串中连续的字符序列。 示例1:1234输入:s = "xyzzaz"输 ... Read more »
1880. 检查某单词是否等于两单词之和 Posted on 2022-07-01 | In leetcode Words count in article: 562 | Reading time ≈ 2 题目字母的 字母值 取决于字母在字母表中的位置,从 0 开始 计数。即,'a' -> 0、'b' -> 1、'c' -> 2,以此类推。 对某个由小写字母组成的字符串 s 而言,其 数值 就等于将 s 中每个字母的 字母值 按顺序 连 ... Read more »
1886. 判断矩阵经轮转后是否一致 Posted on 2022-07-01 | In leetcode Words count in article: 345 | Reading time ≈ 1 题目给你两个大小为 n x n 的二进制矩阵 mat 和 target 。现 以 90 度顺时针轮转 矩阵 mat 中的元素 若干次 ,如果能够使 mat 与 target 一致,返回 true ;否则,返回 false 。 示例1: 123输入:mat = [[0,1],[1,0]], targe ... Read more »
1890. 2020年最后一次登录 Posted on 2022-07-01 | In leetcode Words count in article: 357 | Reading time ≈ 1 题目表: Logins 12345678+----------------+----------+| 列名 | 类型 |+----------------+----------+| user_id | int || time_stamp ... Read more »
1893. 检查是否区域内所有整数都被覆盖 Posted on 2022-07-01 | In leetcode Words count in article: 289 | Reading time ≈ 1 题目给你一个二维整数数组 ranges 和两个整数 left 和 right 。每个 ranges[i] = [starti, endi] 表示一个从 starti 到 endi 的 闭区间 。 如果闭区间 [left, right] 内每个整数都被 ranges 中 至少一个 区间覆盖,那么请你返 ... Read more »
1897. 重新分配字符使所有字符串都相等 Posted on 2022-07-01 | In leetcode Words count in article: 285 | Reading time ≈ 1 题目给你一个字符串数组 words(下标 从 0 开始 计数)。 在一步操作中,需先选出两个 不同 下标 i 和 j,其中 words[i] 是一个非空字符串,接着将 words[i] 中的 任一 字符移动到 words[j] 中的 任一 位置上。 如果执行任意步操作可以使 words 中的每个字符 ... Read more »
1903. 字符串中的最大奇数 Posted on 2022-07-01 | In leetcode Words count in article: 414 | Reading time ≈ 2 题目给你一个字符串 num ,表示一个大整数。请你在字符串 num 的所有 非空子字符串 中找出 值最大的奇数 ,并以字符串形式返回。如果不存在奇数,则返回一个空字符串 "" 。 子字符串 是字符串中的一个连续的字符序列。 示例1:123输入:num = "52&quo ... Read more »
1909. 删除一个元素使数组严格递增 Posted on 2022-07-01 | In leetcode Words count in article: 498 | Reading time ≈ 2 题目给你一个下标从 0 开始的整数数组 nums ,如果 恰好 删除 一个 元素后,数组 严格递增 ,那么请你返回 true ,否则返回 false 。如果数组本身已经是严格递增的,请你也返回 true 。 数组 nums 是 严格递增 的定义为:对于任意下标的 1 <= i < num ... Read more »