林海雪原中的小木屋
林海雪原中的小木屋
全部文章
题解
归档
标签
去牛客网
登录
/
注册
林海雪原中的小木屋的博客
全部文章
/ 题解
(共5篇)
数据分析处理
python 16行代码搞定 while True: try: s1 = input().split()[1:] s2 = list(set(map(int, input().split()[1:]))) s2.sort() r...
2020-03-01
54
2602
""" 其实就是统计指定文件的指定行号的数量,例如如果输入是 E:\V1R2\product\fpgadrive.c 1325 E:\V1R2\product\fpgadrive.c 1325 E:\V1R2\product\fpgadrive.c 1325 则输出是 fpgadrive...
2020-02-27
8
973
自守数
while True: try: n = int(input()) cnt = 0 for i in range(n): if str(i * i).endswith(str(i)): c...
2020-02-26
13
1861
实现字符串通配符
def equal(s1, s2): for i in range(len(s1)): if s1[i] == '?' or s1[i] == s2[i]: continue else: return False...
2020-02-26
6
1259
python大法好
import datetime while True: try: lst = input().split() d = datetime.date(int(lst[0]), int(lst[1]), int(lst[2])) print(d.s...
2020-02-26
3
1066