my_offers
my_offers
全部文章
题解
归档
标签
去牛客网
登录
/
注册
my_offers的博客
全部文章
/ 题解
(共19篇)
#题解 称砝码 python | 遇到数据量大的case,用list超时,set则不会。
https://www.nowcoder.com/practice/f9a4c19050fc477e9e27eb75f3bfd49c?tpId=37&&tqId=21264&rp=1&ru=/ta/huawei&qru=/ta/huawei/question-...
2021-06-23
0
860
题解 #字符串加密# Python 代码力争优雅整洁
# 题目有些错别字 # Attack AT DAWN # a b c d e f g h i j k l m n o p q r s t u v w x y z # t r a i l b z e s c d f g h j k m n o p q u v w x y # Tpptad TP ITV...
2021-06-23
0
900
# 公共子串计算
https://www.nowcoder.com/practice/98dc82c094e043ccb7e0570e5342dd1b?tpId=37&&tqId=21298&rp=1&ru=/ta/huawei&qru=/ta/huawei/question-...
2021-06-23
0
495
题解 | #矩阵乘法计算量估算# 先找最左侧的')', 再找它左侧最近的'('。处理后的元素变成特殊标记。
vscode反复debug后终于通了。debug时希望在窗口紧挨着的变量,最好头几个字母一样。用栈做好像很简单,后面再补充 def f(w_hs,st): num_mul=0 chrs=list(st) cids=[str(i) for i in range(len(st))...
2021-06-20
0
561
题解 | #最长回文子串#求最长,就从最长开始找
import sys def f(s): for le in range(len(s),1,-1): for st in range(0, len(s)-le+1): tmp=s[st:st+le] if tmp==tmp[::...
2021-06-20
1
628
题解 | #参数解析#python | 救出友军,再一举切碎
s=input().strip() loca=[] for i in range(len(s)): if s[i]=='"': loca.append(i) sl=list(s) for i in range(0,len(loca)//2,2): for sp...
2021-06-19
0
691
题解 | #计算日期到天数转换#
import datetime my_map = map(int, input().split(' ')) # You can also use *args and **kwargs to pass in # parameters from lists (or any iterable) and ...
2021-06-19
1
513
题解 | #查找组成一个偶数最接近的两个素数#
要求差值最小,那就从(n/2,n/2)开始找,让差值依次为0,2,4。写到这里,还以为漏掉了差是奇数的情况。但2个的和为偶数,差必定也为偶数。 def is_p(n): if n==1: return 0 # range(2,2)不会产生2。可以输出2是质数 # ...
2021-06-18
0
654
题解 | #截取字符串#
一组输出两行,总共有多组,需要处理一下。 import sys odd=1 ls=[] for line in sys.stdin: l=line.strip() if odd%2==1: ls.append(line) else: n=int...
2021-06-18
0
496
题解 | #蛇形矩阵# 形象易懂 ,python
out=1 3 6 102 5 94 87可以由ori得到:12 34 5 67 8 9 10对于out的每一行, 定截取ori的方向: 第一行是主对角线,第二行是主对角线往左下方移了一步... 确定out的各行的长度import sys def f(l): l=int(l) ls=[] ...
2021-06-18
0
716
首页
上一页
1
2
下一页
末页