牛客727894600号
牛客727894600号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客727894600号的博客
全部文章
/ 题解
(共21篇)
题解 | #统计字符#
import re def my_func(in_str): alphabet = len(re.findall("[a-zA-Z]+?", in_str)) white_space = len(re.findall("\s"...
Python3
2021-12-13
1
395
题解 | #单词倒排#
import re def my_func(in_str): res = re.sub("[^a-zA-Z]", " ", in_str) res = " ".join(res.split(" ")[::-1]) ...
Python3
2021-12-13
1
360
题解 | #查找组成一个偶数最接近的两个素数#
def eval_num(num): "to judge if a particular number is prime number" ...
Python3
2021-10-30
1
593
题解 | #完全数计算#
def my_func(num): co = 0 for i in range(1, int(num) + 1):...
Python3
2021-10-30
1
432
题解 | #挑7#
def my_func(data): for i in data: res = 0 ...
Python3
2021-10-30
1
480
题解 | #截取字符串#
def my_func(data): for i in range(2, len(data) + 2, 2):  ...
Python3
2021-10-30
1
410
题解 | #统计字符#
import re def my_func(in_str): alphabet = len(re.findall("[a-zA-Z]+?", in_str)) &n...
Python3
2021-10-28
1
374
题解 | #图片整理#
def my_func(in_str): return "".join(sorted(in_str, key=lambda x:ord(x))) while True: &...
Python3
2021-10-28
1
307
题解 | #单词倒排#
import re def my_function(in_str): res = re.findall("[a-zA-Z]+", in_str) &n...
Python3
2021-10-28
0
313
题解 | #字符串排序#
# 话不多说,看代码 import re def my_func(in_string): res = [] res2 = []...
Python3
2021-10-26
0
378
首页
上一页
1
2
3
下一页
末页