首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
大使
掘友等级
获得徽章 0
动态
文章
专栏
沸点
收藏集
关注
作品
赞
110
文章 109
沸点 1
赞
110
返回
|
搜索文章
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 658. Find K Closest Elements(python)
leetcode 658. Find K Closest Elements(python)使用直接排序法和删除元素法两种方法进行解题...
3
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 19. Remove Nth Node From End of List(python)
leetcode 19. Remove Nth Node From End of List 单指针法、双指针法、栈三种方法解题...
3
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 91. Decode Ways(python)
leetcode 91. Decode Ways(python)使用暴力递归会超时,所以使用动态规划进行解题...
3
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 2374. Node With Highest Edge Score(python)
这是Weekly Contest 306的第二题,难度 Medium ,主要考查的是图节点的遍历以及排序...
3
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 135. Candy(python)
leetcode 135. Candy(python)本题是经典的分糖果类型题,难度 Hard ,考查贪心思想...
3
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 462. Minimum Moves to Equal Array Elements II(python)
leetcode 462. Minimum Moves to Equal Array Elements II 考察排序和中位数...
3
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 1647. Minimum Deletions to Make Character Frequencies Unique(python)
leetcode 1647. Minimum Deletions to Make Character Frequencies Unique 考查的就是贪心思想...
4
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 2318. Number of Distinct Roll Sequences (python)
这是 Biweekly Contest 81 的第四题,难度 Hard ,主要考查的是对题目的理解和 DFS...
4
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 665. Non-decreasing Array(python)
leetcode 665. Non-decreasing Array(python)考查单调性和贪心...
4
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 16. 3Sum Closest (python)
leetcode 16. 3Sum Closest (python)结合排序和双指针算法可以解决此题...
4
1
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 653. Two Sum IV - Input is a BST(python)
leetcode 653. Two Sum IV - Input is a BST 使用两种递归方法解题...
5
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 1328. Break a Palindrome(python)
leetcode 1328. Break a Palindrome(python)使用贪心思想解题...
5
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 334. Increasing Triplet Subsequence (python)
leetcode 334. Increasing Triplet Subsequence 使用贪心思想解题...
4
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 2317. Maximum XOR After Operations(python)
这是 Biweekly Contest 81 的第三题,难度 Medium ,主要考查的是对题目的理解和按位二进制操作...
5
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 237. Delete Node in a Linked List(python)
leetcode 237. Delete Node in a Linked List(python)简单的更新链表索引操作...
7
1
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 2095. Delete the Middle Node of a Linked List(python)
leetcode 2095. Delete the Middle Node of a Linked List 使用快慢指针法解题...
4
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 2316. Count Unreachable Pairs of Nodes in an Undirected Graph(python)
这是 Biweekly Contest 81 的第二题,难度 Medium ,主要考查的是使用并查集解决图节点连通性的问题...
4
2
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 2315. Count Asterisks(python)
这是 Biweekly Contest 81 的第一题,难度 Eazy ,主要考查的是对题目的理解和字符串的计数...
4
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 583. Delete Operation for Two Strings(python)
leetcode 583. Delete Operation for Two Strings 典型的 LCS 模版题,使用动态规划解题...
4
评论
分享
大使
赞了这篇文章
我是王大你是谁
NLP,算法,大模型 @宇宙尽头
·
2年前
关注
leetcode 38. Count and Say(python)
leetcode 38. Count and Say(python)使用模拟方法和打表方法进行解题...
4
评论
分享
下一页
关注了
1
关注者
1
收藏集
0
关注标签
0
加入于
2022-09-24