首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
日不落拓海海
获赞
297
粉丝
41
关注
6
看过 TA
389
女
Technische Universität Darmstadt
2021
人工智能
IP属地:湖北
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑日不落拓海海吗?
发布(69)
评论
刷题
日不落拓海海
关注TA,不错过内容更新
关注
2022-01-27 20:38
Technische Universität Darmstadt 人工智能
题解 | #字符统计#
while True: try: words = input() s = sorted(set(words))// 用 set 去掉多余的数字,进行第一步按ACSII码来排序 ss = sorted(s, key = lambda x:words.count(x),reverse=True)//通过key=lambda再按照次数进行排序 print("".join(ss)) except: break
0
点赞
评论
收藏
分享
2022-01-26 22:58
Technische Universität Darmstadt 人工智能
2022-01-26
在牛客打卡2天,今天学习:刷题 6 道/代码提交 14 次
每日监督打卡
0
点赞
评论
收藏
分享
2022-01-26 22:58
Technische Universität Darmstadt 人工智能
题解 | #表示数字#
方法一: while True: try: s=input() s='a'+s+'a' t='' for i in range(1,len(s)-1): if s[i].isdigit(): if not s[i-1].isdigit() and not s[i+1].isdigit(): t+='*'+s[i]+'*' elif not s[i-1].isdigit(): ...
0
点赞
评论
收藏
分享
2022-01-26 22:27
已编辑
Technische Universität Darmstadt 人工智能
题解 | #百钱买百鸡问题#
while True: try: n=input() except: break else: for i in range(0,101): z=3*i # 鸡仔数量 res_money = 100-i # 扣除鸡仔的钱 if res_money>0: for m in range(res_money+1): n=res_money-m ...
0
点赞
评论
收藏
分享
2022-01-26 20:15
Technische Universität Darmstadt 人工智能
题解 | #DNA序列#
while True: try: dna = input() num = int(input()) except: break else: ratio = 0.0 new_dna =[] for i in range(len(dna)-num+1): sub_dna = dna[i:i+num] num_c = sub_dna.count('C') num_g = sub_dna.count('G') ...
0
点赞
评论
收藏
分享
2022-01-26 19:49
Technische Universität Darmstadt 人工智能
题解 | #单词倒排#
while True: try: string = input().strip() for word in string: if not word.isalpha(): string = string.replace(word, " ")// 将非alpha的字符用空格取代 string =string.split(" ")//切割后形成数组(多空格的话里面也有空字符) new_str = list(filter(None,string))// filter(None...
0
点赞
评论
收藏
分享
2022-01-26 18:15
已编辑
Technische Universität Darmstadt 人工智能
题解 | #单词倒排#
while True: try: string = input() string+=" " //后面添加一个空格,用于应对句子最后一个字符是字符串而无法添加的情况 new_string = [] sub_str =[] for word in string: if word.isalpha(): sub_str.append(word) else: new_string.append(sub_st...
0
点赞
评论
收藏
分享
2022-01-25 22:08
Technische Universität Darmstadt 人工智能
2022-01-25
在牛客打卡1天,今天学习:刷题 6 道/代码提交 12 次
每日监督打卡
0
点赞
评论
收藏
分享
2022-01-25 22:04
Technische Universität Darmstadt 人工智能
题解 | #查找两个字符串a,b中的最长公共子串#
两遍遍历,数组查找 while True: try: s1= input() s2= input() if len(s1)> len(s2): s1,s2 = s2,s1 length=0 for i in range(len(s1)): for j in range(i+1,len(s1)+1): if s1[i:j] in s2 and (j-i)>length: leng...
0
点赞
评论
收藏
分享
2022-01-25 21:35
Technische Universität Darmstadt 人工智能
题解 | #名字的漂亮度#
while True: try: n = int(input()) num=[i for i in range(26,0,-1)] for i in range(n): lst=input() dic={} result =0 for w in lst: if w in dic: dic[w]+=1 else: ...
0
点赞
评论
收藏
分享
2022-01-25 13:50
Technische Universität Darmstadt 人工智能
题解 | #简单密码#
while True: try: key_words = input() new_key = '' lst_alphla = [chr(97+i) for i in range(26)] for word in key_words: if word.isupper(): if word =='Z': new_key+='a' else: new_key+= ...
0
点赞
评论
收藏
分享
2022-01-23 17:50
已编辑
Technische Universität Darmstadt 人工智能
题解 | #在字符串中找出连续最长的数字串#
while True: try: str_in = input() s='' for w in str_in: if w.isalpha(): s+='*' else: s+=w s2=s.split('*') dic={} for w in s2: if w !='': dic[w]=len(w) max_v...
0
点赞
评论
收藏
分享
2022-01-23 17:02
Technische Universität Darmstadt 人工智能
题解 | #字符串字符匹配#
while True: try: short_str = input() long_str = input() for t in short_str: if long_str.count(t)==0: print("false") break else: print("true") except: break
0
点赞
评论
收藏
分享
2022-01-23 14:14
Technische Universität Darmstadt 人工智能
题解 | #字符串加密#
while True: try: key_word = input() string_in = input() new_key=[] letterlst = [] string_out ='' for i in range(26): letterlst.append(chr((ord("a")+i))) for word in key_word: if word not in new_key: n...
0
点赞
评论
收藏
分享
2022-01-22 22:53
Technische Universität Darmstadt 人工智能
题解 | #字符串排序#
while True: try: str_words = input() a= '' for word in str_words: if word.isalpha(): a+=word b= sorted(a, key=str.upper) s='' t=0 for word in str_words: if word.isalpha(): s+=b[t] ...
0
点赞
评论
收藏
分享
1
2
3
4
5
关注他的用户也关注了:
牛客网
牛客企业服务