可以专门挑选 LeetCode 中的 Easy 难度题目进行练习。这些题目一般来说思维难度都比较低,很容易就可以想...
T1. 最大字符串配对数目(Easy) https://leetcode.cn/problems/find-maximum-number-of-string-pairs/ 题解(散列表) 题目说明所有字符串不相同,因此我们可以枚举每个字符串,检查其反转是否存在,模板类似于两数之和; 扩展:如果字符串存在重复,可以将配对的字符分组再按两两配对计算; 扩展:如果字符串长度很长会存...
end()); return min({nums[n - 1] - nums[2], nums[n - 2] - nums[1], nums[n - 3] - nums[0]}); } }; 作者:TsReaper 链接:https://leetcode.cn/problems/minimum-score-by-changing-two-elements/solutions/2119444/nao-jin-ji-zhuan-wan-by-tsreaper-2u59/ 6360. 最小无法得到的或...
elseif(c =='{') stack.push('}'); elseif(stack.isEmpty() || stack.pop() != c) returnfalse; } returnstack.isEmpty(); } }
leetcode刷题记录 本文记录一下leetcode刷题记录,记录一下自己的解法和心得。LeetCodeTwo Sum题目:two sumGiven an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly one solution, and you may not us...
2566. 替换一个数字后的最大差值(Easy) 题目地址 https://leetcode.cn/problems/maximum-difference-by-remapping-a-digit/ 题目描述 给你一个整数num。你知道 Danny Mittal 会偷偷将0到9中的一个数字替换成另一个数字。 请你返回将num中恰好一个数字进行替换后,得到的最大值和最小值的差位多少。
本题已加入知乎圆桌「高效刷LeetCode拿Offer !」: 来围观计算机专业找工作方面值得关注的信息吧。更多讨论,欢迎点击圆桌链接>>>高效刷 L…显示全部 关注者19,494 被浏览9,161,384 关注问题写回答 邀请回答 好问题 675 3 条评论 分享 ...
题目难度: Easy 通过率: 70.20% 相关话题 数学https://leetcode.com/tag/math 相似题目 完美数 https://leetcode-cn.com/problems/perfect-number/ 难度: 简单 解题思路: 设计一个判断单个数是否是自除数的函数,比如取名为 IsSelfDIv IsSelfDIv函数的要点是: ...
T1. 老人的数目(Easy) https://leetcode.cn/problems/number-of-senior-citizens/ 简单模拟题,直接截取年龄字符后计数即可: classSolution{funcountSeniors(details:Array<String>):Int{returndetails.count{it.substring(11,13).toInt()>60}}} 除了将字符串转为整数再比较外,还可以直接比较子串与“60”的字典...
给你单链表的头节点head,请你反转链表,并返回反转后的链表。 示例1: 输入:head = [1,2,3,4,5]输出:[5,4,3,2,1] 示例2: 输入:head = [1,2]输出:[2,1] 示例3: 输入:head = []输出:[] 提示: 链表中节点的数目范围是[0, 5000] ...