牛客543622112号
牛客543622112号
全部文章
分类
题解(10)
归档
标签
去牛客网
登录
/
注册
牛客543622112号的博客
全部文章
(共10篇)
题解 | #四则运算#
s = input() s = s.replace("{", "(") s = s.replace("}", ")") s = s.replace("[", "(") s = s.replace("]", ")") print(int(eval(s)))
Python3
2021-10-04
214
12586
题解 | #字符串排序#
l = [] while True: try: lines = int(input()) for i in range(lines): da = input() l.append(da) except: ...
Python3
2021-10-03
0
440
题解 | #合并表记录#
dict0 = {} li0 = [] li1 = [] while True: try: lines = int(input()) for i in range(lines): da = input() li ...
Python3
2021-10-03
0
392
题解 | #提取不重复的整数#
s = input() li = list(s[::-1]) li0 = [] for i in li: if i not in li0: li0.append(i) print(''.join(li0))
Python3
2021-10-03
0
648
题解 | #倒置字符串#
s = input() sum = len(s) r = "" j = sum for i in range(0,sum): if s[sum - i - 1] == " ": r = r + " " + s[sum - i: j] j = sum - i -...
Python3
2021-10-02
1
530
用Python处理起来比较简单 | #字符串合并处理#
import re # 构造函数加密字符,如果是[0-9A-Fa-f]则按规则返回加密值,否则返回原始值 def encrypt(x): if re.search(r'[0-9A-Fa-f]', x)...
Python3
2021-07-14
107
4715
Python斐波那契数列
斐波那契数列:1 1 2 3 5 8 13 21 34 f(n)=f(n-1)+f(n-2) n>2,n从0开始递归法: while True: try: month=int(input()) n=month-1 def func(n):...
Python3
2021-02-20
88
5203
字符统计
while True: try: s = input() &nbs...
Python3
2020-09-20
191
6861
Python 字符串排序 sorted isalpha
sorted(iterable,str.upper)就可以实现1)字符由A到Z的排序2)能够实现同字母(A与a算同字母),由输入先后书序排列。str.isalpha实现的是如果字符串至少有一个字符并且所有字符都是字母则返回 True,否则返回 False。 while True: try: ...
Python3
2020-08-17
237
10759
正则匹配与长度3的子串重复
构造一个检查函数 checkLegal 1)生成一个长度为3的所有子串序列(因为长度大于4的相同子串,必定存在长度3的相同子串); 2)if len(set(sub)) < len(sub):return False python 用set去重,判断长度就可以知道是否有重复; 3)类型用正则匹...
Python3
2020-03-04
69
5624