牛客727894600号
牛客727894600号
全部文章
分类
题解(24)
归档
标签
去牛客网
登录
/
注册
牛客727894600号的博客
全部文章
(共37篇)
题解 | #挑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
题解 | #删除字符串中出现次数最少的字符#
from collections import Counter def my_func(in_string): res = sorted(Counter(in_string).items(),...
Python3
2021-10-26
0
424
题解 | #顺时针旋转矩阵#
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param mat int整型二维数组 # @param n int整型 # @retu...
Python3
2021-10-25
2
513
题解 | #字符个数统计#
def my_func(in_num): res = set(str(in_num).replace("\n", "")) return len(res)...
Python3
2021-10-24
1
487
题解 | #提取不重复的整数#
def my_func(num): res = [] for i in str(num)[::-1]: &n...
Python3
2021-10-24
0
352
首页
上一页
1
2
3
4
下一页
末页