按时间归档:2024年03月
-
leetcode92-反转链表
原题 https://leetcode.cn/problems/reverse-linked-list-ii/description 题解 头插法 /** * Definition…
-
leetcode452-用最少数量的箭引爆气球
原题 https://leetcode.cn/problems/minimum-number-of-arrows-to-burst-balloons/description/ 解法…
-
leetcode242-有效的字母异位词
原题 https://leetcode.cn/problems/valid-anagram/description/ 解法 (针对进阶场景,若字符串中存在unicode字符) fu…
-
leetcode290-单词规律
原题 https://leetcode.cn/problems/word-pattern/description/ 解法 类似leetcode205-同构字符串 func word…
-
leetcode383-赎金信
原题 https://leetcode.cn/problems/ransom-note/ 解法 记录下字母出现次数 func canConstruct(ransomNote str…
-
leetcode392-判断子序列
原题 https://leetcode.cn/problems/is-subsequence/description 解法 最简单的双指针略。 对于进阶场景:如果有大量输入的 S,…
-
leetcode68-文本左右对齐
原题 https://leetcode.cn/problems/text-justification/description 解法 贪心即可 func fullJustify(wo…
-
leetcode6-Z 字形变换
原题 https://leetcode.cn/problems/zigzag-conversion/description 解法 遍历每行,按照对称规律都能找到下一个要遍历的下标是…
-
leetcode274-H指数
原题 https://leetcode.cn/problems/h-index/description 题解 核心是求数组中,大于等于h的数的个数 大于等于 h,个数的最大值。 核…