full_hope
full_hope
全部文章
分类
题解(55)
归档
标签
去牛客网
登录
/
注册
full_hope的博客
全部文章
(共52篇)
题解 | #MP3光标位置#
def func(num,coms): dic = {'U':-1,'D':1} cur = 1 star...
Python3
2022-02-02
1
290
题解 | #公共子串计算#
while True: try: a = input() &nbs...
Python3
2022-02-01
0
235
题解 | #求最大连续bit数#
while 1: try: num = bin(int(input())) &...
Python3
2022-02-01
0
266
题解 | #计算日期到天数转换#
dic1 = {'1':31,'2':28,'3':31,'4':30,'5':31,'6':30,'7':31,'8':31,'9':30,'10':31,'11':30,'12':31} year,month,day = [int(i) for&...
Python3
2022-02-01
0
206
题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
while 1: try: input() lst...
Python3
2022-01-30
0
288
题解 | #数据分类处理#
def func(lst_i,lst_r): li = [] for r in lst_r: &...
Python3
2022-01-30
0
332
题解 | #统计字符#
def func(str1): z,s,f,k = '','','','' for i in str1: &...
Python3
2022-01-30
0
258
题解 | #密码强度等级#
def func(str1): z,s,f = '','','' for i in str1: ...
Python3
2022-01-30
2
489
题解 | #二维数组操作#
# 逻辑题,慢慢试错 while 1: try: m,n = [int(i) for i&nb...
Python3
2022-01-30
0
413
题解 | #记负均正#
def func(lst): fs = [i for i in lst if i<0] zs = [i for i in lst if i>0] avg = sum(zs)/len(zs) ...
Python3
2022-01-30
0
261
首页
上一页
1
2
3
4
5
6
下一页
末页