李耀文3681
李耀文3681
全部文章
题解
归档
标签
去牛客网
登录
/
注册
李耀文3681的博客
全部文章
/ 题解
(共45篇)
题解 | #单词倒排#
#把字母的单词找到,再用空格连接,逆序输出 # import sys while True: try: s = input() words = [] word = '' for c in s: if c....
字符串
2021-07-05
0
333
题解 | #在字符串中找出连续最长的数字串#
# import sys while True: try: s = input() words = [] word = '' for c in s: if c.isalpha(): ...
字符串
2021-07-05
0
349
题解 | #人民币转换#
import sys z_dic = {'0':'零', '1':'壹','2':'贰','3':'叁','4':'肆','5':'伍','6':'陆','7':'柒','8':'捌','9':'玖','10':'拾' ,'100':'佰','1000':'仟','10000':'万...
字符串
2021-07-05
0
444
题解 | #字符串字符匹配#
# import sys while True: try: shorts = input() longs = input() allin = "true" for c in shorts: ...
字符串
2021-07-03
0
349
题解 | #学英语#
#先建立一个字典把对应数字的英文存起来 #在写个获取个位的,十位的,百位的表示 #千和百万,十亿的三位可以共用获得一百内的表示 import sys word = {'1':"one",'2':"two",'3':"three",'4':&...
字符串
2021-07-03
0
391
题解 | #删除字符串中出现次数最少的字符#
import sys while True: try: s = input() dic = {} for c in s: dic[c] = s.count(c) #按次数排序 ss = s...
字符串
2021-07-03
1
438
题解 | #字符串分隔#
#搞个函数,字符串长度小于8,右边补齐'0' #大于8,就先输出8个,剩下的再调用函数 # import sys def print_str(s): if len(s) <= 8: print(s.ljust(8,'0')) else: prin...
字符串
2021-07-02
0
347
题解 | #计算某字母出现次数#
# import sys while True: try: s = input().lower() c = input().lower() print(s.count(c)) except: # print(sys.ex...
字符串
2021-07-02
0
325
题解 | #字符串最后一个单词的长度#
# import sys while True: try: s = input().split()[-1] print(len(s)) except: # print(sys.exc_info()) break
字符串
2021-07-02
0
328
题解 | #矩阵乘法计算量估算#
import sys #矩阵相乘的乘法数,和结果矩阵 def com_count(listA, listB): count = listA[0] * listA[1] * listB[1] listC = [listA[0], listB[1]] return count, ...
矩阵
字符串
栈
2021-07-02
0
411
首页
上一页
1
2
3
4
5
下一页
末页