Tasen
Tasen
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Tasen的博客
全部文章
/ 题解
(共4篇)
题解 | #24点运算#
import itertools Value = {'A':1, '2':2, '3':3, '4':4, '5':5, '6':6, '7':7, '8':8, '9':9, '10':10, 'J':11, 'Q':12, 'K':13} Calc = ['+', '-', '*', '//']...
Python3
2021-09-29
0
429
题解 | #简单错误记录#
l = [] ll = [] while 1: try: s = input().split('\\')[-1] data = s.split(' ')[0][-16:] + ' ' + s.split(' ')[1] if data not ...
Python3
2021-09-29
0
363
题解 | #简单错误记录#
l = [] ll = [] while 1: try: s = input().split('\\')[-1] data = s.split(' ')[0][-16:] + ' ' + s.split(' ')[1] if data not ...
Python3
2021-09-29
81
5775
题解 | #密码验证合格程序#
def check(s): if len(s) <= 8: return 0 a, b, c, d = 0, 0, 0, 0 for item in s: if ord('a') <= ord(item) <= ord('z'...
Python3
2021-09-29
351
13156