牛客225249108号
牛客225249108号
全部文章
题解
读书笔记(1)
归档
标签
去牛客网
登录
/
注册
牛客225249108号的博客
全部文章
/ 题解
(共3篇)
题解 | #寻找第K大#
# -*- coding:utf-8 -*- class Solution: def findKth(self, a, n, K): # write code here a.sort(reverse = True) return a[K-1]
Python3
2021-10-24
0
325
题解 | #最小的K个数#
# -*- coding:utf-8 -*- class Solution: def GetLeastNumbers_Solution(self, tinput, k): # write code here r = [] tinput.sort...
Python3
2021-10-24
0
347
题解 | #大数加法#
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # 计算两个数之和 # @param s string字符串 表示第一个整数 # @param t string字符串 表示第二个整数 # @return string字符串 # class Solution: ...
Python3
2021-10-24
4
505