这是悦乐书的第200次更新,第210篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第66题(顺位题号是278)。您是产品经理,目前领导团队开发新产品。不幸的是,您产品的最新版本未通过质量检查…
分类:LeetCode
Leetcode之43-字符串相乘(Multiply Strings)
前言 个人网站 公众号: 北京程序猿, 网站 : https://yaml.vip 算法题 题干 给定两个以字符串形式表示的非负整数 num1 和 num2,返回 num1 和 num2 的乘积,它们的乘积也表示为字符串…
二刷76. Minimum Window Substring
Hard 区别在于因为getOrDefault用不熟,就直接在一开始就把所有的S里面的characters全部加进去了,不过value是0. 这样被window包括之后,value就会变成-1, 在移动start的时候判…
[LeetCode] Word Pattern 词语模式
Given a pattern and a string str, find if str follows the same pattern. Examples: pattern = "abba", str…
[LeetCode] Open the Lock 开锁
You have a lock in front of you with 4 circular wheels. Each wheel has 10 slots: '0', '1', '2', '3…
[LeetCode] Expressive Words 富于表现力的单词
Sometimes people repeat letters to represent extra feeling, such as “hello” -> “he…
LeetCode 299 Bulls and Cows
题目描述 You are playing the following Bulls and Cows game with your friend: You write down a number and ask your …
LeetCode 201 Bitwise AND of Numbers Range
题目描述 Given a range [m, n] where 0 <= m <= n <= 2147483647, return the bitwise AND of all numbers in t…
66. Plus One-Leetcode
基础点 加1操作,从末尾开始向前计算进位,注意若进到最前一位还需要进位的话,要对vector进行插入操作:digits.insert(digits.begin(),1); 常见的vector插入操作: vector.in…
LintCode算法刷题之旋转字符串
链接:旋转字符串 描述 给定一个字符串(以字符数组的形式给出)和一个偏移量,根据偏移量原地旋转字符串(从左向右旋转) 样例 样例 1: 输入: str=”abcdefg”, offset = 3 …
LeetCode算法题-Convert BST to Greater Tree(Java实现)
这是悦乐书的第255次更新,第268篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第122题(顺位题号是538)。给定二进制搜索树(BST),将其转换为更大树,使原始BST的每个键都更改为原…
[LeetCode] Remove 9 移除9
Start from integer 1, remove any integer that contains 9 such as 9, 19, 29… So now, you will have…