首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
Leetcode
AQin
创建于2022-07-06
订阅专栏
一起来科学刷题٩(˃̶͈̀௰˂̶͈́)و
等 15 人订阅
共62篇文章
创建于2022-07-06
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
【陪伴式刷题】Day 21|回溯|77.组合(Combinations)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given two integers n and k, return all possible combinations of k numbers c
【陪伴式刷题】Day 20|二叉树|669.修剪二叉树(Trim a Binary Search Tree)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given the root of a binary search tree and the lowest and highest boundarie
【陪伴式刷题】Day 20|二叉树|450.删除二叉搜索树中的节点(Delete Node in a BST)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given a root node reference of a BST and a key, delete the node with the gi
【陪伴式刷题】Day 19|二叉树|501.二叉搜索树中的众数(Find Mode in Binary Search Tree)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given the root of a binary search tree (BST) with duplicates, return all th
【陪伴式刷题】Day 18|二叉树|654.最大二叉树(Maximum Binary Tree)
刷题顺序按照代码随想录建议 题目描述 英文版描述 You are given an integer array nums with no duplicates. A maximum binary tr
【陪伴式刷题】Day 17|二叉树|112.路径总和(Path Sum) & 113.路径总和ii(Path Sum ii)
刷题顺序按照代码随想录建议 112.路径总和 题目描述 英文版描述 Given the root of a binary tree and an integer targetSum, return t
【陪伴式刷题】Day 16|二叉树|513.找树左下角的值(Find Bottom Left Tree Value)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given the root of a binary tree, return the leftmost value in the last row
【陪伴式刷题】Day 15|二叉树|257.二叉树的所有路径(Binary Tree Paths)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given the root of a binary tree, return all root-to-leaf paths in any order
【陪伴式刷题】Day 14|二叉树|104. 二叉树的最大深度(Maximum Depth of Binary Tree)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given the root of a binary tree, return its maximum depth. A binary tree's
【陪伴式刷题】Day 13|二叉树| 102.二叉树的层序遍历(Binary Tree Level Order Traversal)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given the root of a binary tree, return the level order traversal of its no
【陪伴式刷题】Day 12|二叉树| 145.二叉树的后序遍历(Binary Tree Postorder Traversal)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given the root of a binary tree, return the postorder traversal of its node
【陪伴式刷题】Day 11|栈和队列| 239.滑动窗口最大值(Sliding Window Maximum)
刷题顺序按照代码随想录建议 题目描述 英文版描述 You are given an array of integers nums, there is a sliding window of size
【陪伴式刷题】Day 10|栈和队列| 20. 有效的括号(Valid Parentheses)
题目描述 英文版描述 Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determin
【陪伴式刷题】Day 9|栈和队列| 232. 用栈实现队列(Implement Queue Using Stacks)
刷题顺序按照代码随想录建议 题目描述 英文版描述 英文版地址 中文版描述 请你仅使用两个栈实现先入先出队列。队列应当支持一般队列支持的所有操作(push、pop、peek、empty): 实现 MyQ
【陪伴式刷题】Day 8|字符串| 59.螺旋矩阵 II (spiral Matrix II)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given a positive integer n, generate an n x n matrix filled with elements f
【陪伴式刷题】Day 7|字符串|541.反转字符串 II(Reverse String II)
刷题顺序按照代码随想录建议 题目描述 英文版描述 Given a string s and an integer k, reverse the first k characters for every
【陪伴式刷题】Day 6|哈希表|454题.四数相加II(4sum ii)
给你四个整数数组 `nums1`、`nums2`、`nums3` 和 `nums4` ,数组长度都是 `n` ,请你计算有多少个元组 `(i, j, k, l)` 能满足
【陪伴式刷题】Day 5|哈希表|1.两数之和 (two-sum)
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中
【陪伴式刷题】Day 4|链表|24.两两交换链表中(Swap Nodes in Pairs)
给你一个链表,两两交换其中相邻的节点,并返回交换后链表的头节点。你必须在不修改节点内部的值的情况下完成本题(即,只能进行节点交换)。
【陪伴式刷题】Day 3|链表|203. 移除链表元素(Remove Linked List Elements)
给你一个链表的头节点 `head` 和一个整数 `val` ,请你删除链表中所有满足 `Node.val == val` 的节点,并返回 **新的头节点** 。
下一页