晴天emo雨天high
晴天emo雨天high
全部文章
分类
归档
标签
去牛客网
登录
/
注册
晴天emo雨天high的博客
全部文章
(共3篇)
题解 | 字符串加密
codebook = input() code = input() alpha = "a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z".split(",") alphaBackup = alpha[:]...
2025-10-14
0
14
题解 | 从单向链表中删除指定值的节点
import sys for line in sys.stdin: a = line.split() outputList = list() outputList.append(int(a[1])) for i in range(2,int(a[0])+1): numLoc ...
2025-10-14
0
12
题解 | 【模板】排序
a = input() b = input() c = list() c = b.split() c = [int(s) for s in c] c.sort() print(" ".join(map(str,c)))
2025-09-02
1
31