钻石王老五
钻石王老五
全部文章
题解
未归档(1)
归档
标签
去牛客网
登录
/
注册
钻石王老五的博客
全部文章
/ 题解
(共45篇)
题解 | #括号序列#
s=input() als=[s[0]] hefa={'(':')','[':']','{':'}','"':'"',"'":"'"} for i in s[1:]: if (als[-1],i) in...
Python3
2021-10-31
0
483
题解 | #最长无重复子数组#
给定一个数组arr,返回arr的最长无重复元素子数组的长度,无重复指的是所有数字都不相同。子数组是连续的,比如[1,3,5,7,9]的子数组有[1,3],[3,5,7]等等,但是[1,3,7]不是子数组 while True: try: s=input().replace('...
Python3
滑动窗口
2021-10-30
1
478
题解 | #查找两个字符串a,b中的最长公共子串#
查找两个字符串a,b中的最长公共子串。若有多个,输出在较短串中最先出现的那个。则应从短串的左端开始遍历,拿出子串去匹配另一个串…显然用到了in运算, while True: try: s1=input() s2=input() res="" ...
Python3
字符串
滑动窗口
2021-10-30
0
407
题解 | #DNA序列#
去一个个长度为N的子串里找字母并计数,放入字典,最后排序 while True: try: sstr=input() N=int(input()) adict={} for i in range(len(sstr)+1-N):#...
Python3
字符串
滑动窗口
2021-10-30
0
428
题解 | #MP3光标位置#
第一种方法似乎比第二种简单,第一种方法只生成必要的列表,第二种却老实巴交一开始就生成了完整歌曲列表 while True: try: # 获取歌曲数量 n1 = int(input()) # 获取指令 cmds = input(...
Python3
滑动窗口
扫描线
2021-10-30
1
462
首页
上一页
1
2
3
4
5
下一页
末页