李耀文3681
李耀文3681
全部文章
分类
题解(87)
归档
标签
去牛客网
登录
/
注册
李耀文3681的博客
全部文章
(共87篇)
题解 | #密码截取#
import sys def helper(s, l, r): while l >= 0 and r < len(s) and s[l] == s[r]: l -= 1 r += 1 return s[l+1:r] def get_lon...
字符串
2021-07-06
0
540
题解 | #密码验证合格程序#
#要注意边界是否包含 import sys while True: try: password = input().strip() if len(password) <= 8: print("NG") ...
字符串
2021-07-06
1
453
题解 | #扑克牌大小#
import sys compare_str = "3 4 5 6 7 8 9 10 J Q K A 2 joker JOKER" while True: try: A, B = input().strip().split('-') #先判...
字符串
2021-07-06
0
446
题解 | #识别有效的IP地址和掩码并进行分类统计#
import sys ipmasks = [] while True: try: ip,mask = input().strip().split('~') ipmasks.append([ip, mask]) except: # pri...
字符串
2021-07-06
0
423
题解 | #坐标移动#
#加个函数判断合法操作 #再按照操作处理坐标 import sys def check_hefa(s): if len(s) > 3 or len(s) < 1: return False if s[0] in "ADWS": ...
字符串
2021-07-05
0
465
题解 | #单词倒排#
#把字母的单词找到,再用空格连接,逆序输出 # import sys while True: try: s = input() words = [] word = '' for c in s: if c....
字符串
2021-07-05
0
333
题解 | #在字符串中找出连续最长的数字串#
# import sys while True: try: s = input() words = [] word = '' for c in s: if c.isalpha(): ...
字符串
2021-07-05
0
349
题解 | #人民币转换#
import sys z_dic = {'0':'零', '1':'壹','2':'贰','3':'叁','4':'肆','5':'伍','6':'陆','7':'柒','8':'捌','9':'玖','10':'拾' ,'100':'佰','1000':'仟','10000':'万...
字符串
2021-07-05
0
444
题解 | #字符串字符匹配#
# import sys while True: try: shorts = input() longs = input() allin = "true" for c in shorts: ...
字符串
2021-07-03
0
349
题解 | #学英语#
#先建立一个字典把对应数字的英文存起来 #在写个获取个位的,十位的,百位的表示 #千和百万,十亿的三位可以共用获得一百内的表示 import sys word = {'1':"one",'2':"two",'3':"three",'4':&...
字符串
2021-07-03
0
391
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页