摆烂摆烂摆烂
摆烂摆烂摆烂
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
摆烂摆烂摆烂的博客
全部文章
(共3篇)
题解 | #首个重复字符#
class FirstRepeat: def findFirstRepeat(self, A, n): # write code here hash = {} for i in range(n): if hash.has...
Python2
2022-05-15
0
393
题解 | #奖学金#
if __name__ == '__main__': while True: nravg = sys.stdin.readline().strip() if not nravg: break n,r,avg = [int...
Python3
2022-05-09
1
479
题解 | #连续最大和#
def lianxu(a): size = len(a) pre = 0 res = a[0] for i in range(size): pre = max(a[i],pre+a[i]) res = max(res,pre) ...
Python3
2022-03-16
0
423