tanglin3438
tanglin3438
全部文章
题解
读书笔记(1)
归档
标签
去牛客网
登录
/
注册
tanglin3438的博客
全部文章
/ 题解
(共13篇)
题解 | #杨辉三角的变形#
n = int(input()) alt=[2,3,2,4] #发现规律,从第三行开始2324循环 if n < 3: print(-1) if n>=3: print(alt[(n-3)%4]) #所以对4求余,映射到上面alt列表中
Python3
字符串
数组
2022-05-03
0
338
题解 | #记票统计#
while True: try: m = int(input()) ListM = input().split() n = int(input()) ListN = input().split() if not ...
Python3
字符串
数组
2022-05-03
0
508
题解 | #记负均正#
while True: try: n = int(input()) listNum = list(map(int, input().split())) # 先转换成数组,再把数据转换成int类型,因为map函数返回的对象,所以需要list再转换成列表 ...
Python3
字符串
数组
2022-05-02
0
362
题解 | #二维数组操作#
while True: try: m, n = map(int, input().split()) x1,y1,x2,y2 = map(int, input().split()) swapX = int(input()) swa...
Python3
字符串
数组
2022-05-01
1
648
题解 | #字符串加解密#
NumsList = ["1","2","3","4","5","6","7","8","9","0"] UpperList = ['b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v',...
Python3
字符串
数组
2022-04-30
0
396
题解 | #整型数组合并#
while True: try: List1Count = int(input()) List1 = input().split() if len(List1) != List1Count: print("数组1的长度和...
Python3
数组
2022-04-20
1
341
题解 | #统计大写字母个数#
while True: try: strs = input() if 1 <= len(strs) <= 250: List = [] for x in strs: i...
Python3
字符串
数组
2022-04-20
0
260
题解 | #图片整理#
while True: try: strs = input() if 1 <= len(strs) <= 1000: List = sorted(strs) # sorted函数,默认就是按ASSIC码进行排序的,只不...
Python3
字符串
数组
2022-04-19
0
270
题解 | #查找兄弟单词#
while True: try: Lists = input().split() # 按空格拆分为列表 InputCounts = int(Lists[0]) # 获取原列表的总数N #print(Lists, InputCounts)...
Python3
字符串
数组
2022-04-19
0
281
题解 | #单词倒排#
描述 Catcher是MCA国的情报员,他工作时发现敌国会用一些对称的密码进行通信,比如像这些ABBA,ABA,A,123321,但是他们有时会在开始或结束时加入一些无关的字符以防止别国破解。比如进行下列变化 ABBA->12ABBA,ABA->ABAKK,123321->5123...
Python3
字符串
数组
2022-04-16
0
412
首页
上一页
1
2
下一页
末页