题解列表
1050: [编程入门]结构体之成绩记录
摘要:解题思路:注意事项:参考代码:n = int(input())
arr = []
[arr.append(list(map(str, input().split()))) for _ in ran……
七行简便 编写题解 2847: 找第一个只出现一次的字符
摘要:解题思路:if n.count(i)==1:注意事项:else: print('no')参考代码:n=input()for i in n: if n.count(i)==1:……
python优势-自带高精度
摘要:参考代码:while True:
n = int(input())
if n == 0:
break
if n % 17 == 0:
 
python--study||O.o
摘要:参考代码:t = int(input())
for test in range(t):
T = list(input())
S = list(input())
n = ……
猴子吃桃的问题,五行代码
摘要:解题思路:注意事项:参考代码:N = int(input())my_list = [None] * (N-1) + [1]for i in reversed(range(1,N)): # revers……