题解列表

筛选

[最详细解析]链表之节点删除

摘要:解题思路:注意事项:参考代码:m,n = map(int,input().split())#标注a链表、b链表中的节点个数a={}b={}c=[]for i in range(m):#有m行个学生的学……

2844: 大整数的因子

摘要:参考代码:c = int(input()) s = '' for k in range(2, 10):     if c % k == 0:         s += str(……

2843: 计算2的N次方

摘要:解题思路:                 注意事项:参考代码:print(2 ** int(input()))……

2840: 向量点积计算

摘要:参考代码:n = int(input()) arrA = list(map(int, input().split())) arrB = list(map(int, input().split())……

2839: 石头剪刀布

摘要:参考代码:def generate(x, y):     flag = True     while flag:         for i in range(len(x)):       &nb

2838: 有趣的跳跃

摘要:参考代码:choose = input().split() if len(choose) == 1:     n = int(choose[0])     arr = list(map(int,……