李耀文3681
李耀文3681
全部文章
分类
题解(87)
归档
标签
去牛客网
登录
/
注册
李耀文3681的博客
全部文章
(共87篇)
题解 | #二维数组操作#
#题干复杂,编程简单 #注意不要越界即可 while True: try: m, n = map(int, input().split()) if m <= 9 and m > 0 and n <= 9 and n > 0: ...
2021-06-27
0
475
题解 | #求最小公倍数#
#两个数相乘除以最大公约数就是最小公倍数 #使用辗转相除法求出最大公约数 def zxgy(a, b): while(b != 0): c = a % b a = b b = c return a a,b = map(int,...
2021-06-27
0
364
题解 | #走方格的方案数#
#递归做法 #从左上角到右下角,每次有两种走法,即右移一布或下移一布;当走到边界,即坐标点其中一个等于0,则只有一种走法 def step(n, m): if n == 0 or m == 0: return 1 else: return step(...
2021-06-27
0
380
题解 | #统计大写字母个数#
# check_str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" while True: try: s = input() count = 0 for c in s: # if c...
2021-06-26
0
426
题解 | #最长回文子串#
检查这个字符串是否回文 def check_huiwen(a): str_len = len(a) is_huiwen = True for i in range(str_len - 1 // 2): oa = str_len - 1 - i if a[...
2021-06-25
0
352
题解 | #参数解析#
def print_common_strlen(str_short, str_long): max_com_len = 0 compare_str = '' i = 0 while i + max_com_len < len(str_short): #判断...
2021-06-24
0
423
题解 | #参数解析#
com_str = input()#用个数组保存分解后的参数coms = []a = ''#标识双引号开始start = False#输入字符串总长度str_len = len(com_str)#逐个字符串判断for i in range(str_len): s = com_str[i] ...
2021-06-23
0
382
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页