此用户名涉嫌违规
此用户名涉嫌违规
全部文章
分类
题解(90)
归档
标签
去牛客网
登录
/
注册
此用户名涉嫌违规的博客
少壮不努力,老大忙刷题
TA的专栏
106篇文章
11人订阅
牛客题霸-SQL篇【Mysql】
80篇文章
19881人学习
华为机试(python3)
26篇文章
723人学习
全部文章
(共96篇)
题解 | #简单密码#
来自专栏
# 懒得记也记不住ASCII换码函数了,直接字典映射 hax = { '0':'0','1':'1','2':'2','3':'3','4':'4','5':'5','6':'6', '7':'7','8':'8','9':'9','a':'2','b':'2','c':'2','d...
2023-12-19
0
287
题解 | #求int型正整数在内存中存储时1的个数#
来自专栏
# 转十进制 int(s,要转换的进制数) E.g. 16转10 int(s,16) 、8转10 int(s,8) # 十进制转二进制 bin(s) res=bin(int(input())).count('1') print(res)
2023-12-19
0
178
题解 | #进制转换#
来自专栏
while True: # 转十进制 int(s,要转换的进制数) eg. 16转10 int(s,16) 、8转10 int(s,8) # 十进制转二进制 bin(s) try: print(int(input().strip(),16)) exce...
2023-11-09
0
243
题解 | #字符串分隔#
while True: try: s = input().strip() while len(s) > 8: print(s[:8]) s = s[8:] print(s.ljust(8,'...
2023-11-09
0
225
题解 | #输入整型数组和排序标识,对元素按照升序降序排序#
来自专栏
while True: try: a = input().strip() b = [int(x) for x in input().split()] c = input().strip() if len(b) > int(...
2023-11-09
0
248
题解 | #字符串排序#
来自专栏
import sys res=[] for line in sys.stdin: # 区间左闭右开,把每个输入的换行符去掉后加入数组 res.append(line[:-1]) for i in sorted(res[1:]): # 去掉开头的数字n,剩余的输出 ...
Python3
Python2
字符串
2022-09-15
0
207
题解 | #字符串加密# hashmap
来自专栏
回来在吐槽一次,题目写的跟屎一样,看了好久才明白啥意思 # 时间:O(n^2+nlogn+n),空间:O(len(l)+len(key)+len(res)) def encode(key,s): #考虑到加密文本有空格,所以加上空格 l=list("abcdefghijklmno...
Python3
字符串
哈希表
2022-05-26
0
466
题解 | #字符串加解密# 暴力
来自专栏
第一次想法,暴力破解,时间复杂度算是刚刚卡线 #时间:O(n^2),对应输入字符串每个字符都经过index()一遍,也就是O(n),总体就是O(n^2) #空间:O(len(l1)+len(l2)+len(d1)+len(res)) def en_de_code(exp1,exp2): l1...
Python3
2022-05-25
0
457
题解 | #字符串排序# sorted(,key=)/isalpha()
来自专栏
# 时间:无嵌套循环,所以应该是O(n) # 空间:O(len(str1)+len(str2)+len(res)) def sortString(str1): str2="" res="" index=0 for i in str1: if i.isa...
Python3
字符串
2022-05-23
0
530
题解 | #字符串字符匹配# 暴力/哈希
来自专栏
# 暴力:短字符串里字符每个去判断在不在长字符串里 # 时间:双循环嵌套,所以O(n^2).空间:只存储s,t,所以O(len(s)+len(t)) while True: try: s,t=input(),input() res="true" ...
Python3
Python2
哈希表
字符串
哈希函数
2022-05-21
1
589
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页