用leetcode学习python
西柚檬檬
这个作者很懒,什么都没留下…
展开
-
python//leetcode 21、合并两个有序链表
两个有序没用上原创 2023-05-17 14:24:50 · 135 阅读 · 0 评论 -
python//leetcode 206、反转链表
reversed是翻转队列。原创 2023-05-16 16:12:12 · 88 阅读 · 0 评论 -
python//leetcode 160、相交链表
暴力求解超时了,break可以做while的中断,while True是无限循环。原创 2023-05-16 15:29:21 · 68 阅读 · 0 评论 -
python//leetcode 1672、最富有客户的资产
降序reverse=True。原创 2023-05-15 15:23:10 · 102 阅读 · 1 评论 -
python//leetcode 1054、距离相等的条形码
字典添加方法、字典变数组的方法、排序lambda的用法、count计数、重复加入数组。原创 2023-05-15 15:19:04 · 68 阅读 · 0 评论 -
python//leetcode 383、赎金信
len用于取数组长度,数组切片用[:]表示,可以切片的方式删除数组内容,左闭右开。原创 2023-05-15 15:06:47 · 65 阅读 · 0 评论 -
python//leetcode 283、移动零
用到了enumerate和remove,remove按元素删除,删除数组第一次出现的该元素。原创 2023-05-15 14:58:48 · 51 阅读 · 0 评论 -
python//leetcode 9、回文数
//代表除法取整原创 2023-05-15 14:44:51 · 67 阅读 · 0 评论 -
python//leetcode 1、两数之和
enumerate是内置函数,可以直接查找位置,index也是内置参数,表示位置,从0开始。原创 2023-05-15 14:39:44 · 51 阅读 · 0 评论 -
python//leetcode 349、两个数组的交集
in和not in可以判断元素是否在数组里。原创 2023-05-15 14:35:57 · 72 阅读 · 0 评论