full_hope
full_hope
全部文章
题解
归档
标签
去牛客网
登录
/
注册
full_hope的博客
全部文章
/ 题解
(共52篇)
题解 | #简单密码#
l1 = '1abcdefghijklmnopqrstuvwxyz0ABCDEFGHIJKLMNOPQRSTUVWXYZ23456789' l2 = '1222333444555666777788899990bcdefghijklmnopqrstuvwxyza23456789' dic = dict...
Python3
2022-03-07
0
264
题解 | #简单密码#
l1 = '1abcdefghijklmnopqrstuvwxyz0ABCDEFGHIJKLMNOPQRSTUVWXYZ23456789' l2 = '1222333444555666777788899990bcdefghijklmnopqrstuvwxyza...
Python3
2022-03-07
0
336
题解 | #密码验证合格程序#
if len(s)<=8: return 'NG' li = [0,0,0,0] for i in s: if i.isdigit(): li[0]=1 elif i.islower(): ...
Python3
2022-02-18
60
3417
题解 | #挑7#
while 1: try: li = [i for i in range(...
Python3
2022-02-11
0
300
题解 | #四则运算#
str = input().replace('{','(').replace('[','(').replace(']',')').replace('}',')') print(int(eval(str)))
Python3
2022-02-10
0
306
题解 | #坐标移动#
def func(loc): if loc[0] == 'A': start[0] -= int...
Python3
2022-02-08
0
319
题解 | #字符串加密#
while 1: try: s1 ='ABCDEFGHIJKLMNOPQRSTUVWXYZ' &nb...
Python3
2022-02-08
0
302
题解 | #蛇形矩阵#
while 1: try: n = int(input()) &n...
Python3
2022-02-07
0
453
题解 | #字符串排序#
for s in sorted([input() for i in range(int(input()))]): print(s)
Python3
2022-02-06
0
341
题解 | #提取不重复的整数#
s = input() s2 = '' for i in s[::-1]: if i not in s2:  ...
Python3
2022-02-06
0
321
首页
上一页
1
2
3
4
5
6
下一页
末页