保国
保国
全部文章
题解
归档
标签
去牛客网
登录
/
注册
保国的博客
全部文章
/ 题解
(共25篇)
题解 | #删除字符串中出现次数最少的字符#
#字符串处理函数 def processStr(line): ch_nums={} #统计字符频率 for index in&...
Python3
2021-11-01
0
611
题解 | #简单密码#
while 1: try: passwd = input().strip() ...
Python3
2021-10-27
0
395
题解 | #密码验证合格程序#
def CheckPasswd(passwd): #检查长度 if len(passwd)<=8: &nb...
Python3
2021-10-27
4
627
题解 | #简单错误记录#
#将所有输入保存到lines lines =[] # while 1: try: line = input...
Python3
2021-10-27
0
477
题解 | #识别有效的IP地址和掩码并进行分类统计#
lines = [] while True: try: line = input().strip() &n...
Python3
2021-10-27
2
935
题解 | #汽水瓶#
while True: num = int(input().strip()) if not num: &n...
Python3
2021-10-27
6
870
题解 | #字符串排序#
n = int(input().strip()) #先处理输入 strlist = [] while n>0 : istr = input().strip(...
Python3
2021-10-26
13
1972
题解 | #求int型正整数在内存中存储时1的个数#
num = input().strip() num = int(num) num_of_one = 0 while num > 0: if num...
Python3
2021-10-26
23
2580
题解 | #坐标移动#
words = input().strip().split(';') xy = [0,0]#初始坐标 def getCoordinate(word):#分析坐标是否合法 if len(wor...
Python3
2021-10-26
0
443
题解 | #字符个数统计#
inStr = input() strs = []#已出现的字符串 numStr = 0 for i in range(len(inStr)): ch ...
Python3
2021-10-26
0
395
首页
上一页
1
2
3
下一页
末页