人生苦短,但求成长
人生苦短,但求成长
全部文章
分类
题解(166)
归档
标签
去牛客网
登录
/
注册
人生苦短,但求成长的博客
全部文章
(共64篇)
题解 | #公共子串计算#方法二:动态规划
def fun(str1, str2): m = [[0 for i in range(len(str2) + 1)] for j in range(len(str1) + 1)] max_sub_len = 0 for i in range(len(str1)): for j in ra...
Python3
2022-02-14
3
381
题解 | #公共子串计算#双指针的方法
while True: try: str1, str2 = input(), input() # 先把str1设为短的字符串 if len(str1) >= len(str2): str1, str2 = str2, str1 substr = ...
Python3
2022-02-14
3
314
题解 | #参数解析#为什么没人考虑先用引号分割呢
while True: try: str_input = input() # 判断是否有引号 if str_input.count('"') == 0: print(len(str_input.split())) for i in str_in...
Python3
2022-02-14
9
2085
题解 | #计算日期到天数转换#这个速度好像不快
while True: try: year, month, day = [int(i) for i in input().split()] total_days = day for i in range(2, month + 1): if i == ...
Python3
2022-02-14
8
915
题解 | #百钱买百鸡问题#这题比的是速度
while True: try: n = int(input()) for x in range(21): for y in range(34): for z in range(0, 100, 3): ...
Python3
2022-02-12
3
400
题解 | #字符串通配符#学习大佬的递归思维,YYDS
def fun(str1, str2): if str1 == '' and str2 == '': return True elif str1 == '' and str2 != '': return False elif str1 != ...
Python3
2022-02-12
41
3525
题解 | #矩阵乘法计算量估算#一个括号里不能有三个矩阵
while True: try: n = int(input()) matrix_list = [] for i in range(n): matrix_list.append([int(i) for i in input().split()]) ...
Python3
2022-02-12
2
892
题解 | #矩阵乘法#
while True: try: x, y, z = int(input()), int(input()), int(input()) A, B = [], [] for i in range(x): A.append([int(...
Python3
2022-02-11
1
321
题解 | #24点游戏算法#把所有可能算出来
import itertools def fun(arr, y): # 前面的结果与后一个数加减乘除的可能 res = [] for x in arr: res.append(x) res.append(y) res.ap...
Python3
2022-02-11
15
2157
题解 | #24点游戏算法#向大佬学习,递归YYDS
def fun(num_list, target): if len(num_list) == 1: return num_list[0] == target else: for i in range(len(num_list)): list1 = num_list[:...
Python3
2022-02-11
2
827
首页
上一页
1
2
3
4
5
6
7
下一页
末页