摘要:
LeetCode 541. Reverse String II (反转字符串 II) 题目 链接 https://leetcode.cn/problems/reverse-string-ii/ 问题描述 给定一个字符串 s 和一个整数 k,从字符串开头算起,每计数至 2k 个字符,就反转这 2k 字 阅读全文
摘要:
LeetCode 383. Ransom Note (赎金信) 题目 链接 https://leetcode.cn/problems/ransom-note/ 问题描述 给你两个字符串:ransomNote 和 magazine ,判断 ransomNote 能不能由 magazine 里面的字符构 阅读全文
摘要:
LeetCode 454. 4Sum II (四数相加 II) 题目 链接 https://leetcode.cn/problems/4sum-ii/ 问题描述 给你四个整数数组 nums1、nums2、nums3 和 nums4 ,数组长度都是 n ,请你计算有多少个元组 (i, j, k, l) 阅读全文
摘要:
LeetCode 202. Happy Number (快乐数) 题目 链接 https://leetcode.cn/problems/happy-number/ 问题描述 编写一个算法来判断一个数 n 是不是快乐数。 「快乐数」 定义为: 对于一个正整数,每一次将该数替换为它每个位置上的数字的平方 阅读全文
摘要:
LeetCode 349. Intersection of Two Arrays (两个数组的交集) 题目 链接 https://leetcode.cn/problems/intersection-of-two-arrays/ 问题描述 给定两个数组 nums1 和 nums2 ,返回 它们的交集 阅读全文
摘要:
LeetCode 242. Valid Anagram (有效的字母异位词) 题目 链接 https://leetcode.cn/problems/valid-anagram/ 问题描述 给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词。 注意:若 s 和 t 中每个字 阅读全文