yangdongaaa
yangdongaaa
全部文章
Python题解
SQL题解(5)
声明(1)
题解(13)
归档
标签
去牛客网
登录
/
注册
yangdongaaa的博客
全部文章
/ Python题解
(共61篇)
题解 | #表示数字#
# 用到栈的概念,是数字,入栈,不是,先清栈 in_str = input() out_str = '' numb = [] for i in in_str: if i.isdigit(): numb.append(i) else: # 先判断栈内是不...
Python3
2022-03-29
0
278
题解 | #自守数#
n = int(input()) num = 0 for i in range(0, n + 1): x = i * i y = str(x)[::-1] z = str(i)[::-1] if y.startswith(z): num += 1 pr...
Python3
2022-03-29
0
211
题解 | #字符统计#
in_str = input() s = sorted(set(in_str)) ss = sorted(s, key=lambda x:in_str.count(x),reverse=True) print(''.join(ss))
Python3
2022-03-29
0
194
题解 | #放苹果#
# 盘子数大于苹果树f(m,n) = f(m,m) # 盘子数小于苹果树则: # (1)至少一个盘子为空:f(m, n) = f(m, n-1) # (2)没有盘子为空:f(m, n) = f(m-n,n) # 递归出口: # (1)没有苹果:m ==0 ,出 # (2)盘子数 n==1,出 def...
Python3
2022-03-28
0
290
题解 | #输出单向链表中倒数第k个结点#
while True: try: n = int(input().strip()) in_lb = input().strip().split() out_n = int(input().strip()) if out_n =...
Python3
2022-03-28
0
212
题解 | #统计每个月兔子的总数#
if __name__ == '__main__': n = int(input().strip()) one_month = 1 # 一个月的兔子数目 two_month = 0 # 二个月的兔子数目 three_month = 0 # 三个月及以上的兔子...
Python3
2022-03-28
0
259
题解 | #图片整理#
if __name__ == '__main__': in_str = input().strip() ascs = [] chars = [] for i in in_str: ascs.append(ord(i)) ascs = sorte...
Python3
2022-03-24
0
240
题解 | #单词倒排#
if __name__ == '__main__': in_str = input().strip() kg = ' ' ok_str = '' out_str = [] for i in in_str: if i.islower(): ...
Python3
2022-03-24
0
201
题解 | #删除字符串中出现次数最少的字符#
if __name__ == '__main__': strs = input().strip() zm = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', '...
Python3
2022-03-24
0
316
题解 | #汽水瓶#
alls = [] while True: try: alls.append(int(input().strip())) except EOFError: break for n in alls: num =...
Python3
2022-03-24
0
337
首页
上一页
1
2
3
4
5
6
7
下一页
末页