进一步有进一步的欢喜
进一步有进一步的欢喜
全部文章
题解
归档
标签
去牛客网
登录
/
注册
进一步有进一步的欢喜的博客
全部文章
/ 题解
(共4篇)
题解 | #两数之和#
梦开始的地方 class Solution: def twoSum(self , numbers: List[int], target: int) -> List[int]: # write code here value2index = {} # ...
Python3
2021-12-08
25
1632
正经用python如果过这题
前言 思路就是归并排序的时候计算逆序数量,但是python代码却总是超时。查看了目前牛客网通过的代码基本上是,emmmm,一言难尽。 # -*- coding:utf-8 -*- class Solution: def InversePairs(self, data): re...
python
2020-04-27
0
954
[编程题]数组中出现次数超过一半的数字
和leetcode有点区别,主要在于输入不保证一定有答案。 最后加上一个判断最多个数的有没有超过一半就好了。 class Solution: def MoreThanHalfNum_Solution(self, numbers): # write code here ...
python
2020-04-26
0
695
合并有序链表
递归版本: class Solution: # 返回合并后列表 def Merge(self, pHead1, pHead2): # 递归结束条件就是有一个到头了,返回不是None的那个就好了 if not pHead1 or not pHead2: ...
2020-04-20
6
983