Repository Analysis

youngyangyang04/leetcode-master

《代码随想录》LeetCode 刷题攻略:200道经典题目刷题顺序,共60w字的详细图解,视频难点剖析,50余张思维导图,支持C++,Java,Python,Go,JavaScript等多语言版本,从此算法学习不再迷茫!🔥🔥 来看看,你会发现相见恨晚!🚀

0.2 Likely human-written View on GitHub
0.2
Adjusted Score
0.2
Raw Score
100%
Time Factor
2026-04-30
Last Push
61,553
Stars
Shell
Language
149,728
Lines of Code
315
Files
24
Pattern Hits
2026-05-31
Scan Date

Score History

Severity Breakdown

CRITICAL 0HIGH 3MEDIUM 0LOW 21

Pattern Findings

24 matches across 3 categories. Click a row to expand file-level details.

Cross-File Repetition3 hits · 15 pts
SeverityFileLineSnippet
HIGHproblems/0104.二叉树的最大深度.md0# definition for a node. class node: def __init__(self, val=none, children=none): self.val = val self.children = childre
HIGHproblems/0104.二叉树的最大深度.md0# definition for a node. class node: def __init__(self, val=none, children=none): self.val = val self.children = childre
HIGHproblems/0102.二叉树的层序遍历.md0# definition for a node. class node: def __init__(self, val=none, children=none): self.val = val self.children = childre
Over-Commented Block14 hits · 14 pts
SeverityFileLineSnippet
LOWproblems/二叉树的递归遍历.md281}
LOWproblems/二叉树的递归遍历.md321 // let res=[];
LOWproblems/二叉树的递归遍历.md341 ...inorderTraversal(root.right),
LOWproblems/0203.移除链表元素.md621 }
LOWproblems/toolgithub.sh1#########################################################################
LOWproblems/toolgithub.sh41 ex -sc '1i|* [刷算法(两个月高强度学算法)](https://www.programmercarl.com/xunlian/xunlianying.html)' -cx $i
LOWproblems/0494.目标和.md841 // 将所有元素划分为 2 个集合,
LOWproblems/0494.目标和.md861 }
LOWproblems/0101.对称二叉树.md341 continue;
LOWproblems/0005.最长回文子串.md521 //Manacher算法,利用回文对称的性质,根据i在上一个回文中心的臂长里的位置去判断i的回文性
LOWproblems/0005.最长回文子串.md541 //1.i>maxRight,找不到i',无法参考,自己算自己的
LOWproblems/0968.监控二叉树.md241 // left == 1 && right == 0 左节点有摄像头,右节点无覆盖
LOWproblems/0968.监控二叉树.md481 # 情况1: 左右节点都有覆盖
LOWproblems/kamacoder/0126.骑士的攻击astar.md581### TypeScript
Hyper-Verbose Identifiers7 hits · 7 pts
SeverityFileLineSnippet
LOWproblems/0654.最大二叉树.md399function constructMaximumBinaryTree(nums: number[]): TreeNode | null {
LOWproblems/0654.最大二叉树.md419function constructMaximumBinaryTree(nums: number[]): TreeNode | null {
LOWproblems/1365.有多少小于当前数字的数字.md259function smallerNumbersThanCurrent(nums: number[]): number[] {
LOWproblems/1365.有多少小于当前数字的数字.md278function smallerNumbersThanCurrent(nums: number[]): number[] {
LOWproblems/1005.K次取反后最大化的数组和.md311function largestSumAfterKNegations(nums: number[], k: number): number {
LOWproblems/kamacoder/0109.冗余连接II.md409def is_tree_after_remove_edge(edges, edge, n):
LOWproblems/kamacoder/0104.建造最大岛屿.md420 def check_largest_connect_island(self,grid):