-
There is a better solution for the TwoSum problem than the hashmap solution. Sure hashmap is fine and meets the desired output. however it can be completely eliminated as such. The techinque employ…
-
# 要求
每周至少完成给定题目中的两道算法题
围绕每周重点学习的算法知识点,撰写一篇有观点和思考的技术文章(字数不限)
# 注意事项
下面列出的题目中,按照知识点进行了简单分类,但并不意味着使用相应的数据结构或算法一定是解决该题目的最优解,这样分类只是为了方便大家有针对性的练习;
有的题目可能需要结合多个算法或数据结构进行求解。
# 第四周题目
## Trie树
…
-
- nuoxoxo/sea#1834
-
-
### LeetCode Username
faisalt661
### Problem Number, Title, and Link
https://leetcode.com/problems/string-compression-iii
### Bug Category
Missing test case *(Incorrect/Inefficient Code getting a…
-
Hi各位同学,俗话说“三人行,必有我师”,因此我们鼓励大家在整个学习期间,多多 Review 同班同学的代码并进行点评。在这个过程中:
- 可能你会从其他同学的代码中学到一个更优的思路
- 可能你会因为其他同学给你的评论启发新的灵感
- 可能你的代码会得到大家纷纷的点赞
- 有时候也可能因为其他小伙伴的一句“学习了”而备受鼓舞
“让优秀的人一起学习”,大家可以在互相 Review…
-
Some editorials doesn't show the code, since they are hidden inside scrolling. Without editorial code, solutions doesn't help that much.
maybe you can hit the copy button using selenium, and copy tho…
-
这里记录出过的算法题
-
Type: Bug
when i print log in debug console
ansi color code can not print right.
like this
2024-10-09T16:03:41+08:00[36m [INFO] [file:router.go:37] [0mStart app at 0.0.0.0:9898
VS Code versi…
-
给定一个二叉树,找出其最大深度。
二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。
**说明:** 叶子节点是指没有子节点的节点。
**示例:**
给定二叉树 `[3,9,20,null,null,15,7]` ,
3
/ \
9 20
/ \
15 7
返回它的最大深度 3…