首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
一定要上岸的独行侠很坚定
获赞
0
粉丝
0
关注
7
看过 TA
4
男
河南省淮阳中学
2023
算法工程师
IP属地:河南
一定要上岸的独行侠很坚定
私信
关注
拉黑
举报
举报
确定要拉黑一定要上岸的独行侠很坚定吗?
发布(22)
评论
刷题
收藏
一定要上岸的独行侠很坚定
关注TA,不错过内容更新
关注
2023-07-29 14:31
河南省淮阳中学 算法工程师
2023.07.29 在牛客打卡5天!
0
点赞
评论
收藏
分享
2023-07-29 14:05
河南省淮阳中学 算法工程师
题解 | #列表中第一次出现的位置#
a = input().split() print(a.index('NiuNiu'))
0
点赞
评论
收藏
分享
2023-07-29 14:03
河南省淮阳中学 算法工程师
题解 | #错误出现的次数#
a = input() for i in a: j = a.count('0') print(j)
0
点赞
评论
收藏
分享
2023-07-29 14:01
河南省淮阳中学 算法工程师
题解 | #数学幂运算#
x,y = map(int,input().split()) print(x ** y, y ** x,sep="\n")
0
点赞
评论
收藏
分享
2023-07-29 14:00
河南省淮阳中学 算法工程师
题解 | #数字的二进制表示#
print(bin(int(input())))
0
点赞
评论
收藏
分享
2023-07-29 13:59
河南省淮阳中学 算法工程师
题解 | #数字的十六进制#
print(hex(int(input())))
0
点赞
评论
收藏
分享
2023-07-29 13:57
河南省淮阳中学 算法工程师
题解 | #字母转数字#
print(ord(input()))
0
点赞
评论
收藏
分享
2023-07-29 13:56
河南省淮阳中学 算法工程师
题解 | #正数输出器#
a = int(input()) print(abs(a))
0
点赞
评论
收藏
分享
2023-07-29 13:56
河南省淮阳中学 算法工程师
题解 | #朋友的年龄和#
a = list(map(int,input().split())) print(sum(a))
0
点赞
评论
收藏
分享
2023-07-29 13:54
河南省淮阳中学 算法工程师
题解 | #列表的最值运算#
a = list(map(int,input().split())) print(max(a)) print(min(a))
0
点赞
评论
收藏
分享
2023-07-29 13:49
河南省淮阳中学 算法工程师
题解 | #使用字典计数#
w = input() a = [i for i in w] b = [w.count(i) for i in w] print(dict(zip(a,b)))
0
点赞
评论
收藏
分享
2023-07-27 12:06
河南省淮阳中学 算法工程师
题解 | #遍历字典#
# 创建一个字典 operators_dict operators_dict = {"<": "less than", "==": "equal"} # 先打印一行 print("Here is the original dict:") # 在使用 for 循环 遍历 使用 sorted 函数 排序 包含 operators_dict 所有键值对的列表 for key, value in sorted(operators_dict.items()): # 输出类似字符串 print(f&q...
0
点赞
评论
收藏
分享
2023-07-27 12:03
河南省淮阳中学 算法工程师
题解 | #增加元组的长度#
a = tuple([i for i in range(1,6)]) b = a + tuple(i for i in range(6,11)) print(a,len(a),b,len(b),sep='\n')
0
点赞
评论
收藏
分享
2023-07-27 12:02
河南省淮阳中学 算法工程师
题解 | #增加元组的长度#
a = tuple([i for i in range(1,6)]) b = a + tuple(i for i in range(6,11)) print(a,len(a),b,len(b),sep='\n')
0
点赞
评论
收藏
分享
2023-07-27 11:59
河南省淮阳中学 算法工程师
题解 | #名单中出现过的人#
a = tuple(['Tom', 'Tony', 'Allen', 'Cydin', 'Lucy', 'Anna']) print(a) if input() in a: print('Congratulations!') else: print('What a pity!')
0
点赞
评论
收藏
分享
1
2
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务