LeetCode习题的Golang解答
仅含免费题
Category | Easy | Medium | Hard | Total |
---|---|---|---|---|
Algorithms | 53 / 145 | 84 / 250 | 32 / 93 | 169 / 488 |
Draft | 0 / 1 | 0 / 3 | 0 / 0 | 0 / 4 |
Total | 53 / 146 | 84 / 253 | 32 / 93 | 169 / 492 |
以下题目,暂时不能使用 Golang 解答
- 116. Populating Next Right Pointers in Each Node
- 117. Populating Next Right Pointers in Each Node II
helper会帮助处理大部分琐碎的工作。
notes记录了我答题过程中,对知识点的总结。
在kit中添加了LeetCode常用的数据结构和处理函数:
- 为*ListNode添加了与[]int相互转换的函数,方便添加单元测试。使用方式可以参考21. Merge Two Sorted Lists
- 为*TreeNode添加了与[]int相互转换的函数,方便添加单元测试。