李耀文3681
李耀文3681
全部文章
题解
归档
标签
去牛客网
登录
/
注册
李耀文3681的博客
全部文章
/ 题解
(共45篇)
题解 | #提取不重复的整数#
#字符串先逆序 #没放进输出结果里的,就添加,已经放过的,就不处理 import sys while True: try: n = input() res = "" for c in n[::-1]: ...
字符串
2021-07-08
0
400
题解 | #句子逆序#
# import sys while True: try: s = input().strip() l = s.split()[::-1] print(' '.join(l)) except: # print(sys.e...
字符串
2021-07-08
0
317
题解 | #矩阵乘法#
import sys while True: try: x = int(input().strip()) y = int(input().strip()) z = int(input().strip()) #分别保存A,B矩阵 ...
字符串
矩阵
数组
2021-07-08
0
400
题解 | #字符串合并处理#
import sys checkc = "0123456789abcdefABCDEF" #转换函数 #先转成数值,再转成二进制表示,倒序,转成数值,再从表里找到字符 def process(c): if c in checkc: if c.isupper...
字符串
2021-07-07
0
381
题解 | #字符串加解密#
# #题解1 # import sys # def encode(s): # encodes = "" # for c in s: # if c.isupper(): # if c == 'Z': # ...
字符串
2021-07-07
0
512
题解 | #密码截取#
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
542
题解 | #密码验证合格程序#
#要注意边界是否包含 import sys while True: try: password = input().strip() if len(password) <= 8: print("NG") ...
字符串
2021-07-06
1
455
题解 | #扑克牌大小#
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
首页
上一页
1
2
3
4
5
下一页
末页