题解列表

筛选

求最大值——python

摘要:解题思路:注意事项:参考代码:while True:    try:        L = list(map(int,input().split()))        print(f"max={max……

后缀子串排序——python

摘要:解题思路:注意事项:参考代码:while True:    try:        L = input()        L2 = []        for i in range(len(L)): ……

字符串连接——python

摘要:解题思路:注意事项:参考代码:while True:    try:        a,b = map(str,input().split())        print(a+b)    except……

谁是你的潜在朋友

摘要:解题思路:注意事项:参考代码:while True:    try:        n,m = map(int,input().split())        L = [int(input()) fo……

与2无关的数——python

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

区间中最大的数

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