题解列表

筛选

程序员爬楼梯——递归

摘要:解题思路:注意事项:参考代码:def pa(n):    if n == 1 or n == 2:        return 1    elif n == 3:        return 2   ……

区间中最大的数

摘要:解题思路:注意事项:参考代码:n = int(input())L = list(map(int,input().split()))m = int(input())for i in range(m): ……

与2无关的数——python

摘要:解题思路:注意事项:参考代码:def bxg(n):    if '2' in str(n) or n%2 == 0:        return 0    else:        ……