1965. 丢失信息的雇员 Posted on 2022-07-01 | In leetcode Words count in article: 264 | Reading time ≈ 1 题目表: Employees 12345678+-------------+---------+| Column Name | Type |+-------------+---------+| employee_id | int || name | varchar |+- ... Read more »
1967. 作为子字符串出现在单词中的字符串数目 Posted on 2022-07-01 | In leetcode Words count in article: 351 | Reading time ≈ 1 题目给你一个字符串数组 patterns 和一个字符串 word ,统计 patterns 中有多少个字符串是 word 的子字符串。返回字符串数目。 子字符串 是字符串中的一个连续字符序列。 示例1:12345678输入:patterns = ["a","abc&qu ... Read more »
1971. 寻找图中是否存在路径 Posted on 2022-07-01 | In leetcode Words count in article: 323 | Reading time ≈ 1 题目有一个具有 n个顶点的 双向 图,其中每个顶点标记从 0 到 n - 1(包含 0 和 n - 1)。图中的边用一个二维整数数组 edges 表示,其中 edges[i] = [ui, vi] 表示顶点 ui 和顶点 vi 之间的双向边。 每个顶点对由 最多一条 边连接,并且没有顶点存在与自身相 ... Read more »
1974. 使用特殊打字机键入单词的最少时间 Posted on 2022-07-01 | In leetcode Words count in article: 528 | Reading time ≈ 2 题目有一个特殊打字机,它由一个 圆盘 和一个 指针 组成, 圆盘上标有小写英文字母 'a' 到 'z'。只有 当指针指向某个字母时,它才能被键入。指针 初始时 指向字符 'a' 。 每一秒钟,你可以执行以下操作之一: 将指针 顺时针 或者 逆时针 ... Read more »
1979. 找出数组的最大公约数 Posted on 2022-07-01 | In leetcode Words count in article: 261 | Reading time ≈ 1 题目给你一个整数数组 nums ,返回数组中最大数和最小数的 最大公约数 。 两个数的 最大公约数 是能够被两个数整除的最大正整数。 示例1:123456输入:nums = [2,5,6,9,10]输出:2解释:nums 中最小的数是 2nums 中最大的数是 102 和 10 的最大公约数是 2 ... Read more »
1984. 学生分数的最小差值 Posted on 2022-07-01 | In leetcode Words count in article: 371 | Reading time ≈ 1 题目给你一个 下标从 0 开始 的整数数组 nums ,其中 nums[i] 表示第 i 名学生的分数。另给你一个整数 k 。 从数组中选出任意 k 名学生的分数,使这 k 个分数间 最高分 和 最低分 的 差值 达到 最小化 。 返回可能的 最小差值 。 示例1:12345输入:nums = [9 ... Read more »
1991. 找到数组的中间位置 Posted on 2022-07-01 | In leetcode Words count in article: 345 | Reading time ≈ 1 题目给你一个下标从 0 开始的整数数组 nums ,请你找到 最左边 的中间位置 middleIndex (也就是所有可能中间位置下标最小的一个)。中间位置 middleIndex 是满足 nums[0] + nums[1] + ... + nums[middleIndex-1] == nums[m ... Read more »
1995. 统计特殊四元组 Posted on 2022-07-01 | In leetcode Words count in article: 279 | Reading time ≈ 1 题目给你一个 下标从 0 开始 的整数数组 nums ,返回满足下述条件的 不同 四元组 (a, b, c, d) 的 数目 : nums[a] + nums[b] + nums[c] == nums[d] ,且 a < b < c < d 示例1:123输入:nums = [ ... Read more »
2000. 反转单词前缀 Posted on 2022-07-01 | In leetcode Words count in article: 418 | Reading time ≈ 1 题目给你一个下标从 0 开始的字符串 word 和一个字符 ch 。找出 ch 第一次出现的下标 i ,反转 word 中从下标 0 开始、直到下标 i 结束(含下标 i )的那段字符。如果 word 中不存在字符 ch ,则无需进行任何操作。 例如,如果 word = "abcdefd ... Read more »
2006. 差的绝对值为 K 的数对数目 Posted on 2022-07-01 | In leetcode Words count in article: 316 | Reading time ≈ 1 题目给你一个整数数组 nums 和一个整数 k ,请你返回数对 (i, j) 的数目,满足 i < j 且 |nums[i] - nums[j]| == k 。 |x| 的值定义为: 如果 x >= 0 ,那么值为 x 。 如果 x < 0 ,那么值为 -x 。 示例1:123 ... Read more »