保国
保国
全部文章
分类
题解(26)
归档
标签
去牛客网
登录
/
注册
保国的博客
全部文章
(共25篇)
题解 | #句子逆序#
words = input().strip().split() new_string = '' for i in range(len(words)-1,-1,-1): new_str...
Python3
2021-10-26
0
323
题解 | #提取不重复的整数#
inNumber = input().strip() out = '' #从字符串尾部开始遍历,遇到出现过的数字则跳过 nums =[] for i in range(len(inNumber)-1,-1,-1): &n...
Python3
2021-10-26
0
293
题解 | #合并表记录#
while True: try: n =int(input().strip()) exc...
Python3
2021-10-26
0
372
题解 | #质数因子#
a = int(input().strip()) M = []#记录所有因子 def getPrime(a): if a == 2: ...
Python3
2021-10-26
1
426
题解 | #进制转换#
while True: try: s = input().strip() ex...
Python3
2021-10-26
0
561
题解 | #字符串分隔#
while True: try: s = input().split()[0]  ...
Python3
2021-10-26
0
537
题解 | #明明的随机数#
# 排序加去重 N = int(input().strip()) while True: ranNum = []#记录输入的随机数 ...
Python3
2021-10-23
0
607
题解 | #计算某字母出现次数#
s = input().strip()#字符串 a = input().strip()#字母 s = s.lower() a = a.lower() num = 0 for i i...
Python3
2021-10-23
0
666
题解 | #字符串最后一个单词的长度#
s = input().strip()#读取输入字符串 def getmaxL(s): maxL = 0 for i in ...
Python3
2021-10-23
1
497
题解 | #表达式求值#
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # 返回表达式的值 # @param s string字符串 待计算的表达式 # @return int整型 # class S...
Python3
2021-10-23
0
447
首页
上一页
1
2
3
下一页
末页