2255. 统计是给定字符串前缀的字符串数目 Posted on 2022-06-19 | In leetcode Words count in article: 293 | Reading time ≈ 1 题目给你一个字符串数组 words 和一个字符串 s ,其中 words[i] 和 s 只包含 小写英文字母 。 请你返回 words 中是字符串 s 前缀 的 字符串数目 。 一个字符串的 前缀 是出现在字符串开头的子字符串。子字符串 是一个字符串中的连续一段字符序列。 示例1:123456输入: ... Read more »
2259. 移除指定数字得到的最大结果 Posted on 2022-06-19 | In leetcode Words count in article: 396 | Reading time ≈ 1 题目给你一个表示某个正整数的字符串 number 和一个字符 digit 。 从 number 中 恰好 移除 一个 等于 digit 的字符后,找出并返回按 十进制 表示 最大 的结果字符串。生成的测试用例满足 digit 在 number 中出现至少一次。 示例1:123输入:number = ... Read more »
2264. 字符串中最大的 3 位相同数字 Posted on 2022-06-19 | In leetcode Words count in article: 379 | Reading time ≈ 1 题目给你一个字符串 num ,表示一个大整数。如果一个整数满足下述所有条件,则认为该整数是一个 优质整数 : 该整数是 num 的一个长度为 3 的 子字符串 。 该整数由唯一一个数字重复 3 次组成。 以字符串形式返回 最大的优质整数 。如果不存在满足要求的整数,则返回一个空字符串 " ... Read more »
2269. 找到一个数字的 K 美丽值 Posted on 2022-06-19 | In leetcode Words count in article: 347 | Reading time ≈ 1 题目一个整数 num 的 k 美丽值定义为 num 中符合以下条件的 子字符串 数目: 子字符串长度为 k 。 子字符串能整除 num 。 给你整数 num 和 k ,请你返回 num 的 k 美丽值。 注意: 允许有 前缀 0 。 0 不能整除任何值。 一个 子字符串 是一个字符串里的连 ... Read more »
2273. 移除字母异位词后的结果数组 Posted on 2022-06-19 | In leetcode Words count in article: 601 | Reading time ≈ 2 题目给你一个下标从 0 开始的字符串 words ,其中 words[i] 由小写英文字符组成。 在一步操作中,需要选出任一下标 i ,从 words 中 删除 words[i] 。其中下标 i 需要同时满足下述两个条件: 0 < i < words.length words[i - ... Read more »
2278. 字母在字符串中的百分比 Posted on 2022-06-19 | In leetcode Words count in article: 210 | Reading time ≈ 1 题目给你一个字符串 s 和一个字符 letter ,返回在 s 中等于 letter 字符所占的 百分比 ,向下取整到最接近的百分比。 示例1:1234输入:s = "foobar", letter = "o"输出:33解释:等于字母 'o' ... Read more »
2283. 判断一个数的数字计数是否等于数位的值 Posted on 2022-06-19 | In leetcode Words count in article: 332 | Reading time ≈ 1 题目给你一个下标从 0 开始长度为 n 的字符串 num ,它只包含数字。 如果对于 每个 0 <= i < n 的下标 i ,都满足数位 i 在 num 中出现了 num[i]次,那么请你返回 true ,否则返回 false 。 示例1:12345678输入:num = " ... Read more »
2287. 重排字符形成目标字符串 Posted on 2022-06-19 | In leetcode Words count in article: 463 | Reading time ≈ 2 题目给你两个下标从 0 开始的字符串 s 和 target 。你可以从 s 取出一些字符并将其重排,得到若干新的字符串。 从 s 中取出字符并重新排列,返回可以形成 target 的 最大 副本数。 示例1:1234567输入:s = "ilovecodingonleetcode" ... Read more »
824. 山羊拉丁文 Posted on 2022-05-26 | In leetcode Words count in article: 442 | Reading time ≈ 1 题目给你一个由若干单词组成的句子 sentence ,单词间由空格分隔。每个单词仅由大写和小写英文字母组成。 请你将句子转换为 “山羊拉丁文(Goat Latin)”(一种类似于 猪拉丁文 - Pig Latin 的虚构语言)。山羊拉丁文的规则如下: 如果单词以元音开头('a', ... Read more »
Java虚拟机结构 Posted on 2021-05-31 | In redis Words count in article: 1.9k | Reading time ≈ 6 Java虚拟机结构运行时数据区pc寄存器Java虚拟机可以支持多条线程同时执行,每一条Java虚拟机线程都有自己的pc(program counter)寄存器。在任意时刻,一条Java虚拟机线程只会执行一个方法的代码。这个正在被执行的方法称为该线程当前方法。如果这个方法不是native的,那pc寄存 ... Read more »