首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
姓牛名毛
获赞
2
粉丝
0
关注
4
看过 TA
9
南昌航空大学
2017
Java
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑姓牛名毛吗?
发布(10)
评论
刷题
收藏
姓牛名毛
关注TA,不错过内容更新
关注
2024-03-10 22:17
南昌航空大学 Java
题解 | #浙大不同难度题目的正确率#
select difficult_level, sum( case when result = 'right' then 1 else 0 end ) / count(1) as correct_rate from ( select t2.difficult_level, t1.result from ( select device_id, question_id, result from question_practice_detail where device_id in ( select device_id from user_profile where university = '浙江...
0
点赞
评论
收藏
分享
2024-03-08 23:17
南昌航空大学 Java
题解 | #统计每个学校的答过题的用户的平均答题数#
select t2.university, count(t1.question_id) / count(distinct t1.device_id) avg_answer_cnt from question_practice_detail t1 join user_profile t2 on t2.device_id = t1.device_id and t1.result is not null group by t2.university;
0
点赞
评论
收藏
分享
2024-03-08 21:07
南昌航空大学 Java
题解 | #查看学校名称中含北京的用户#
select device_id, age, university from user_profile where regexp_like(university,'北京');
0
点赞
评论
收藏
分享
2023-07-03 22:48
南昌航空大学 Java
题解 | #进制转换#
j = input() i = int(j,16) if i >=1 and i <= ((2**31)-1): print(i)
0
点赞
评论
收藏
分享
2023-05-21 14:17
南昌航空大学 Java
题解 | #牛牛的抽奖游戏#
import sys strs = [] strs_1 = [] strs_2 = [] for line in sys.stdin: temp = line.split() strs.extend(temp) for i in strs: if i == "3": strs_1.extend(i) # print(strs_1) print("Congratulations!") else: strs_2.extend(i) # print(strs_2) # print('-'*20) # print(strs) # print(strs_1) # print(strs_2) if len...
0
点赞
评论
收藏
分享
2023-05-21 01:52
南昌航空大学 Java
题解 | #牛客的伙伴们#
a = ['NiuMei', 'NiuKele', 'NiuNeng'] b = [3, 4, 5, 8] c = list(zip(a,b)) print(c)
0
点赞
评论
收藏
分享
2023-05-21 01:48
南昌航空大学 Java
题解 | #无法更改的信息#
one = tuple(map(str,input().split())) two = tuple(map(str,input().split())) print(one) print(two) three = [] three.extend(list(one[:3])) three.extend((list(two[-3:]))) print(tuple(three))
0
点赞
评论
收藏
分享
2023-05-21 01:29
南昌航空大学 Java
题解 | #统计人次#
lists = list(map(str,input().split())) s = lists.index('NiuNiu') ss = lists.count('NiuNiu') print(ss) print(s)
0
点赞
评论
收藏
分享
2023-05-21 00:17
南昌航空大学 Java
题解 | #网页的生成#
xy = input()line = []line = xy.split(" ")for lin in line: print(2*int(lin))
0
点赞
评论
收藏
分享
2021-04-07 21:42
南昌航空大学 Java
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务