牛客873478221号
牛客873478221号
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
牛客873478221号的博客
全部文章
(共5篇)
题解 | #牛牛的矩阵相加#
两行搞定,寻找最简解法!!!! n=int(input()) print([[j*n for j in i] for i in [[1,2,3],[4,5,6],[7,8,9]]])
Python3
2022-08-14
0
197
题解 | #牛牛的矩阵相加#
两行搞定,继续寻找最简解法。 n=int(input()) print([[j*n for j in i] for i in [[1,2,3],[4,5,6],[7,8,9]]])
Python3
2022-08-14
0
193
题解 | #列表的最大与最小#
l=list(range(10,51)) # 用list()函数,range()函数,直接生成10到50的列表。因为是左闭右开,所以rang()的第二个参数是51 print(l) print(f'{l[0]} {l[-1]}')
Python3
2022-08-14
0
233
题解 | #最长公共连续子串#
str1=input() str2=input() count_list=[] i=0 j=0 while i < len(str1): while j < len(str1): j+=1 ...
Python3
2022-06-14
0
317
题解 | #牛牛的朋友#
n = int(input()) nums = [int(i) for i in input().split(' ')] nums.sort() x=0 for i in range(n-2): for j in range(i+1,n-1): k=j+1 while k<n:...
Python3
2022-06-14
0
485