读书不觉已春深
读书不觉已春深
全部文章
题解
归档
标签
去牛客网
登录
/
注册
读书不觉已春深的博客
全部文章
/ 题解
(共9篇)
题解 | #统计每个月兔子的总数#
解析:将兔子分成三类:小,中,大 所以每个月的兔子数量为 月 1 2 3 4 5 6 7 8 9 10 11 12 小 1 0 1 1 2 3 5 8 13 21 34 ...
排序
递归
python
2021-04-16
0
612
题解 | #字符串反转#
方法1:C #include<stdio.h> #include<string.h> int main(void) { char str[1000]; int len,i; gets(str); len = strlen(str); ...
排序
python
字符串
2021-04-16
0
411
题解 | #数字颠倒#
方法1: python a = str(input()) print(a[::-1]) 解: import numpy as np a=np.random.rand(5) print(a) [ 0.64061262 0.8451399 0.965673 0.89256687 0.485...
排序
python
字符串
2021-04-16
6
677
python GC 最长子序列
while True: try: in_str = input() num = int(input()) res = '' a_max = 0 for i in range(len(in_str) -num+1...
排序
python
2020-08-19
9
999
python 最大漂亮度求解
如题,所求最大漂亮度求解。1)求出去重后各个字母出现的个数。2)出现重复字母最多的为26,次多为25依次类推。 def beautifldegree(s): s1 = set(s) n = len(s1) res = [] for each in s1: res.appe...
排序
python
字符串
思维
2020-08-17
3
904
蛇形矩阵 找规律题 最佳解法
1 3 6 102 5 94 87第一行[1 3 6 10]第二行是 去掉第一行的第一列,然后将后面的[3 6 10]分别减1得到的。 while True: try: N=int(input()) res=[] for i in range(...
排序
python
规律
2020-08-17
92
3375
python ascii 排序 sorted默认排序
大神答案。sorted对字符串str 对排序默认是按照ascii码进行排序。 while True: try: print("".join(sorted(input()))) except: break个人答案,测试时间超过2秒。 while True...
排序
python
字符串
2020-08-17
2
1673
Python 字符串排序 sorted isalpha
sorted(iterable,str.upper)就可以实现1)字符由A到Z的排序2)能够实现同字母(A与a算同字母),由输入先后书序排列。str.isalpha实现的是如果字符串至少有一个字符并且所有字符都是字母则返回 True,否则返回 False。 while True: try: ...
排序
python
字符串
2020-08-17
232
10743
python sorted排序
num = int(input()) in_list = [input() for x in range(num)] in_list_s = [] in_list_s = sorted(in_list) for x in in_list_s: print(x)
排序
python
字符串
2020-08-16
28
3058