-
### LeetCode Username
espr3ss0
### Problem Number, Title, and Link
3320. Count The Number of Winning Sequences https://leetcode.com/problems/count-the-number-of-winning-sequences/
### Bug Category…
-
#学号:
#姓名:
#班级:
#小组:
#语言:
#作业&总结链接:
> 请准确无误地复制上述格式,我们的作业通过工具抓取,格式不对无法被统计到
> 查看学号请登录官网:https://u.geekbang.org/schedule 左侧头像下面就是你的学号
-
### LeetCode Username
sanket3101
### Problem Number, Title, and Link
https://leetcode.com/problems/add-two-numbers/
### Bug Category
Problem examples
### Bug Description
I have added a test cas…
-
# 要求
1. 每周至少完成给定题目中的两道算法题
2. 围绕每周重点学习的算法知识点,撰写一篇有观点和思考的技术文章(字数不限)
# 注意事项
1. 下面列出的题目中,按照知识点进行了简单分类,但并不意味着使用相应的数据结构或算法一定是解决该题目的最优解,这样分类只是为了方便大家有针对性的练习;
2. 有的题目可能需要结合多个算法或数据结构进行求解。
# 第二周题目
…
-
简单过了一遍视频,位运算,有些记不住,,
关于排序,因为个人感觉希尔,冒泡,选择排序,用到的比较小,精力少放。
主要精力,还是要放在老师说的NLOGN 算法上。
LRU 在python 中,正好可以看出,是两种数据结构同时配合使用的结果。
这个星期,一共在leetcode 做题,大约180 道,开始感觉到,代码之间的关系。
也就是说,**他山之石可以功玉。代码似曾相识,结构可以复用,…
-
### LeetCode Username
Amrender579
### Problem Number, Title, and Link
69.Sqrt(x) https://leetcode.com/problems/syrt(x)
### Bug Category
Missing test case *(Incorrect/Inefficient Code getting acce…
-
### LeetCode Username
General Kirigan (LeetCode ID: RUMI15)
### Problem Number, Title, and Link
https://leetcode.com/problems/linked-list-in-binary-tree/
### Bug Category
Missing test case *(Inco…
-
### LeetCode Username
z3T4knBUpW
### Problem Number, Title, and Link
https://leetcode.com/explore/interview/card/google/67/sql-2/3044/
### Bug Category
Problem examples
### Bug Description
Acco…
-
### LeetCode Username
ShivamTld
### Problem Number, Title, and Link
261. Graph Valid Tree https://leetcode.com/problems/graph-valid-tree/description/
### Bug Category
Missing test case *(Incorrec…
-
• 本周主要练习对象是数组和链表(包含跳表)
数组和链表都是线性结构,其题目大多涉及指针的使用。
• 数组类题目,注意一下几点:
○ 排序:是否对数组进行排序后有利于求解。
§ Leetcode 1 两数之和要求返回数组索引,此时不能对原数组进行排序,但可以生成排序数组,然后得到结果后回原数组找索引.
○ 双指针:
§ 尤其在原地数组题目中常见,不可使用…