雍子狸
雍子狸
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
雍子狸的博客
全部文章
(共2篇)
题解 | #排序#
冒泡排序: class Solution: def MySort(self , arr: List[int]) -> List[int]: # write code here for i in range(len(arr)): f...
Python3
2022-03-18
19
804
题解 | #跳台阶扩展问题#
n=int(input()) from functools import reduce dp=[1]*(n+1) if n<2: print(dp[n]) else: for i in range(2,n+1): dp[i]=reduce(lambda x,y:...
Python3
2022-03-17
0
312