首页
AI Coding
NEW
沸点
课程
直播
活动
AI刷题
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
写笔记
写代码
草稿箱
创作灵感
查看更多
会员
登录
注册
leetcode
我是王大你是谁
创建于2021-05-12
订阅专栏
python 解答 leetcode
等 30 人订阅
共750篇文章
创建于2021-05-12
订阅专栏
默认顺序
默认顺序
最早发布
最新发布
leetcode 2016. Maximum Difference Between Increasing Elements(python)
leetcode 2016. Maximum Difference Between Increasing Elements(python)第一种使用暴力解法,第二种方法使用一次遍解题
leetcode 1275. Find Winner on a Tic Tac Toe Game(python)
leetcode 1275. Find Winner on a Tic Tac Toe Game(python)找规律解题
leetcode 1984.Minimum Difference Between Highest and Lowest of K Scores(python)
leetcode 1984. Minimum Difference Between Highest and Lowest of K Scores(python)找规律解题
leetcode 1971. Find if Path Exists in Graph(python)
leetcode 1971. Find if Path Exists in Graph(python)使用 BFS 解题
leetcode 2027. Minimum Moves to Convert String(python)
leetcode 2027. Minimum Moves to Convert String(python)找规律解题
leetcode 2047. Number of Valid Words in a Sentence(python)
leetcode 2047. Number of Valid Words in a Sentence(python)根据题意写代码即可
leetcode 1945. Sum of Digits of String After Convert(python)
leetcode 1945. Sum of Digits of String After Convert(python)根据题意描述写代码,很简单
leetcode 2062. Count Vowel Substrings of a String(python)
leetcode 2062. Count Vowel Substrings of a String(python)第一种和第二种方法使用内置函数进行二层循环暴力解题,第三种方法使用了滑动窗口原理解题
leetcode 999. Available Captures for Rook(python)
leetcode 999. Available Captures for Rook(python)按照题意找规律解题
leetcode 682. Baseball Game(python)
leetcode 682. Baseball Game(python)根据题意将各种操作写成条件语句进行计算即可
leetcode 2022. Convert 1D Array Into 2D Array(python)
leetcode 2022. Convert 1D Array Into 2D Array(python)直接遍历解题,非常非常简单的一道题!
leetcode 203. Remove Linked List Elements(python)
leetcode 203. Remove Linked List Elements(python)一种方法直接在原链表上进行节点删除操作,另一种方法直接新建链表将新建的合法节点不断链接到新链表后面
leetcode 205. Isomorphic Strings(python)
leetcode 205. Isomorphic Strings(python)使用字典解题,要充分理解题意,否则这道 easy 级别的题能让你错好几次!!
leetcode 2032. Two Out of Three(python)
leetcode 2032. Two Out of Three(python)第一种方法使用了遍历元素法,第二种方法使用了对集合的求交集和并集运算
leetcode 2053. Kth Distinct String in an Array(python)
leetcode 2053. Kth Distinct String in an Array(python)使用内置函数解题
leetcode 202. Happy Number(python)
leetcode 202. Happy Number(python)根据题意,找规律解题,比较简单
leetcode 2057. Smallest Index With Equal Value(python)
leetcode 2057. Smallest Index With Equal Value(python)使用遍历法和内置函数法两种方法解题
leetcode 190. Reverse Bits(python)
leetcode 190. Reverse Bits(python)使用内置函数法和位运算法两种方法解题
leetcode 141. Linked List Cycle(python)
leetcode 141. Linked List Cycle(python)使用快慢指针法解决题目
下一页