326. 3的幂[https://leetcode-cn.com/problems/power-of-three/] 无话可说,今天太温柔
![240](https://upload.jianshu.io/users/upload_avatars/25584663/6005b380-14f0-4aaf-b4b7-b2f53110b33e.jpeg?imageMogr2/auto-orient/strip|imageView2/1/w/240/h/240)
326. 3的幂[https://leetcode-cn.com/problems/power-of-three/] 无话可说,今天太温柔
725. 分隔链表[https://leetcode-cn.com/problems/split-linked-list-in-parts/] 解题思路 没时间,就没有优化代...
162. 寻找峰值[https://leetcode-cn.com/problems/find-peak-element/] 解题思路 初读题觉得这就是一道简单题,再看还是觉...
524. 通过删除字母匹配到字典里最长单词[https://leetcode-cn.com/problems/longest-word-in-dictionary-throu...
447. 回旋镖的数量[https://leetcode-cn.com/problems/number-of-boomerangs/] 解题思路 假设给你等边三角形的三个点,...
1894. 找到需要补充粉笔的学生编号[https://leetcode-cn.com/problems/find-the-student-that-will-replace...
68. 文本左右对齐[https://leetcode-cn.com/problems/text-justification/] 解题思路 题目难度为困难,但看着更像是业务处...
502. IPO[https://leetcode-cn.com/problems/ipo/] 解题思路:题目要求就是找到每次 小于成本 & 盈利最多 的数据 按盈利降序1、...
257. 二叉树的所有路径[https://leetcode-cn.com/problems/binary-tree-paths/] 最近一直都在写深度遍历的题,从简单到中等...
235. 二叉搜索树的最近公共祖先[https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-s...
48. 旋转图像[https://leetcode-cn.com/problems/rotate-image/] 解题思路:1、题目要求顺时针旋转90°2、上下翻转3、对称即...
165. 比较版本号[https://leetcode-cn.com/problems/compare-version-numbers/] 我觉得吧,这道题称不上中等。。。
1899. 合并若干三元组以形成目标三元组[https://leetcode-cn.com/problems/merge-triplets-to-form-target-tr...
1109. 航班预订统计[https://leetcode-cn.com/problems/corporate-flight-bookings/] 没啥好说的。。。
按权重随机选择[https://leetcode-cn.com/problems/random-pick-with-weight/] 解题思路:1、读题我想到的第一种方式是构...
187. 重复的DNA序列[https://leetcode-cn.com/problems/repeated-dna-sequences/] 这题最大的难点在于读懂题目😕 ...
解题思路: 读题感觉这题很简单 看用例发现我感觉错了,有点像穷举和前缀和的感觉,显然不想用穷举法 1、写出内循环发现,从首位开始,判断从当前位到起始位是否位奇数数组 是:返回...