69% of the easy problems it hadn't seen before, as those were published after the cut-off date. It was unable to tackle any new hard problems. From this, we can deduce that while some memorization does occur, the model doesn't precisely recall all problems and their respective solutions...
这说明代码能力还有待提高,可以专门挑选 LeetCode 中的 Easy 难度题目进行练习。这些题目一般来说思维难...
LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。) - pearsonhan/leetcode
LeetCode Solutions: A Record of My Problem Solving Journey.( leetcode题解,记录自己的leetcode解题之路。) 展开 收起 暂无标签 /golong/leetcode JavaScript 等3 种语言 JavaScript 83.7% Python 15.0% Ruby 1.3% 保存更改 取消 发行版 暂无发行版 贡献者 (88) 全部 近期动态 2个...
Provide all my solutions and explanations in Chinese for all the Leetcode coding problems. Same as this: LeetCode All in One 题目讲解汇总(持续更新中...) Click below image to watch YouTube Video Note: All explanations are written in Github Issues, please do not create any new issue or ...
350+Problems / 1000+Solutions 最好不要满足于accept,要追求最高效率。做一题就要杀死一题。leetcod...
Tags: bfs, easy, graph, stack/queue [leetcode] Balanced Binary Tree | 看一棵二叉树是否balanced Posted by: lexigrey on: October 7, 2013 In: classic | leetcode Leave a Comment 经典题,注意balanced的定义:左右子树都balance,且高度差<=1。所以下面这个也是balanced的,即使a的做右子树都不是完...
There are around 140 problems today, but I only solved the public ones (117 problems). Majority of them is in easy or medium so, if you understand the basic ideas then it should be solvable without much hints and editorials. I see 4 bigger categories and many sub categories in it, and...
1//The main idea of this is the left bracket might change the sign of a number, however, this does not seem to be very generalized2//https://leetcode.com/problems/basic-calculator/discuss/62362/JAVA-Easy-Version-To-Understand!!!3publicclassSolution {4//1-2-(4+5+2)-35publicintcalcula...
例题1:206 Reverse Linked List 【easy】 题意:翻转一个单向链表 test case: Input:1->2->3->4->5->NULL Output:5->4->3->2->1->NULL 思考:可否用迭代和递归两种方法完成? 解题思路:对于翻转类的题型,我们只需要知道head->prev节点如何翻转成prev-head即可,这里我们仍然要用到dummy node,作为head的...