为看花火大会而编程
为看花火大会而编程
全部文章
分类
题解(17)
归档
标签
去牛客网
登录
/
注册
为看花火大会而编程的博客
全部文章
(共17篇)
暴力破解之随机数
代码出自:https://blog.nowcoder.net/n/2907a1f4e68a4e638df20fd93c9d06b1 题目:盘子放苹果:https://www.nowcoder.com/practice/bfd8234bb5e84be0b493656e390bdebf ...
Python3
2021-09-30
1
902
题解 | #进制转换#
while True: try: num=list(map(lambda x:int(x,16),input().split())) for i in num: print(i) except: break
Python3
2021-09-29
0
343
题解 | #尼科彻斯定理#
# #数学定理题找个固定规律即可: # 分析: # 1^3=1 # 2^3=3+5 # 3^3=7+9+11 # 4^3=13+15+17+19 # 首个奇数为前一个行的首个奇数+(2*(n-1)) 可用递归: def first_n(n): if n==1: return...
Python3
2021-09-29
0
443
题解 | #参数解析#
参考,感谢: :https://blog.nowcoder.net/n/dbec571fda1244d09560c54f96a7448e while True: try: str_1=input() stack=[] list_1=[] ...
Python3
2021-09-29
0
406
题解 | #公共子串计算#
条件匹配皆可用堆栈知识解决 import re def stack_count(s1,s2): if len(s1) > len(s2): s1,s2 = s2,s1 stack=[] max_list=[] #栈弹出后用list记录下弹出的长度,最...
Python3
栈
2021-09-29
1
816
题解 | #参数解析#
import re def stack_count(s1,s2): if len(s1) > len(s2): s1,s2 = s2,s1 stack=[] max_list=[] #栈弹出后用list记录下弹出的长度,最后用max(list)来获取...
Python3
2021-09-29
0
556
题解 | #计算日期到天数转换#
def leap_year(year): if (year % 4) == 0: if (year % 100) == 0: if (year % 400) == 0: return 1 else: ...
Python3
2021-09-28
9
1162
首页
上一页
1
2
下一页
末页