燕草如碧
燕草如碧
全部文章
题解
归档
标签
去牛客网
登录
/
注册
燕草如碧的博客
全部文章
/ 题解
(共54篇)
题解 | #判断两个IP是否属于同一子网#
大佬函数名掉了,补上 def int2bin(ipt): lst = list(map(int, ipt.split('.'))) res = '' for i in lst: a = bin(i)[2:] b = '0' * (8 - len...
Python3
Python3
2022-06-27
4
513
题解 | #统计每个月兔子的总数#
抄作业 n=int(input()) r=1 a,b=1,1 for i in range(3,n+1): a,b=r,a r+=b print(r)
Python3
2022-06-26
0
227
题解 | #字符串合并处理#python numberone
python抄作业真香啊 import re def encrypt(x): if re.search('[0-9A-Fa-f]',x): return hex(int(bin(int(x,16))[2:].rjust(4,'0')[::-1],2))[2:].upper(...
Python3
2022-06-26
0
254
题解 | #字符串排序#
抄作业真香 str1 = input() a = '' for i in str1: if i.isalpha(): a+=i b = sorted(a,key=str.upper) c= '' index = 0 for i in range(len(str1)): ...
Python3
2022-06-25
0
300
题解 | #购物单#
抄作业真相,leetcode太卷了,还是牛客刷题有感觉 money,capacity = map(int ,input().split(" ")) money //=10 weight = [[0]*3 for _ in range(capacity+1)] satisfaction = [[0]*...
Python3
2022-06-25
2
647
题解 | #排序#b站mosh算法快排写法
js版本 /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 将给定数组排序 * @param arr int整型一维数组 待排序的数组 * @return int整型一维数组 */ function MySort( arr ) { ...
Python3
Javascript Node
Javascript V8
2022-06-25
0
416
题解 | #排序#python快排
mosh的java写法改Python class Solution: def MySort(self , arr: List[int]) -> List[int]: def quicksort(arr,left,right): if left&...
Python3
2022-06-24
0
311
题解 | #相差不超过k的最多数#没人写py?
没人写py? n,k = map(int,input().split()) lis = list(map(int,input().split())) list.sort(lis) left = 0 right = 0 max1 =0 sub = 0 while(right<len(lis)):...
Python3
2022-06-24
0
329
题解 | #栈的压入、弹出序列#官方方法-改
去掉len(s)==0这个条件,直接把辅助栈底弄为-1,嘿嘿 class Solution: def IsPopOrder(self , pushV: List[int], popV: List[int]) -> bool: n = len(pushV) ...
Python3
2022-06-24
0
232
题解 | #数位五五#太简单了,解法随意
太简单了,解法随意 l,r = map(int,input().split()) sum2 = 0 for i in range(l,r+1): str1='' str1+=str(i) sum1 = 0 for j in str1: sum1+=i...
Python3
2022-06-23
2
524
首页
上一页
1
2
3
4
5
6
下一页
末页