读书不觉已春深
读书不觉已春深
全部文章
题解
归档
标签
去牛客网
登录
/
注册
读书不觉已春深的博客
全部文章
/ 题解
(共60篇)
题解 | #取近似值#
def func(): num = float(input()) res = num + 0.5 f = int(res) print(f) if __name__ == "__main__": func()int()是采取截断小数的方式。当数值大于等于0...
python
数组
思维
2021-04-16
1
417
python 矩形乘法
1)通过list(map(int,iterable))将矩阵以二维列表的形式导入。这里必须在map()外面加层list()2)通过两层for循环遍历计算两个举证相乘。 a_x,a_y,c_y = int(input()),int(input()),int(input()) a1=[] a2 = []...
2021-04-16
0
632
python 求两个字符串最长公共子序列
1)遍历s1短字符串2)判断短字符串s1[i:j]是否在s2中,并通过长度比较来求出最长公共子序列。 while True: try: s1=input() s2=input() if len(s1)>len(s2):#总体思路:从短的字...
python
字符串
2020-08-19
7
1530
python MP3 光标位置
1)光标上移下移是下标减1加1来实现。边界情况是直接跳到最大值最小值。2)max是记录着mp3 当前界面最大值。 def helper(cur,n,order): max_ = 1 for s in order: if s == 'U' and cur == 1: ...
python
字符串
数组
2020-08-19
5
1010
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 素数判断 偶数分解为两个素数差最小值
本人解法: def issushu(x): for i in range(2,x//2+1): if x%i==0: return False return True while True: try: in_int =...
python
规律
数组
2020-08-19
0
1293
python 找出字符串中第一个只出现一次的字符
while True: try: in_str = input() res = [] flag = False for x in in_str: if in_str.count(x) == 1: ...
python
字符串
2020-08-19
1
1156
python 挑7
while True: try: num = int(input()) count = 0 for x in range(num): if ('7' in str(x+1)) or ((x+1) %7==0): ...
python
字符串
2020-08-18
11
1526
python 按字节截取字符串
该题目除了中文就是英文,可以判断是否为英文做区分。注意边界条件汉子为两个字节是否会超过输出。超过输出就不加入打印字符串。 def is_Chinese(word): for ch in word: if '\u4e00' <= ch <= '\u9fff': ...
python
字符串
2020-08-17
3
1720
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
2
3
4
5
6
下一页
末页