首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
想去三亚看海的话题终结者all-in校招
获赞
20
粉丝
1
关注
5
看过 TA
12
西安交通大学
2023
数据分析师
IP属地:陕西
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑想去三亚看海的话题终结者all-in校招吗?
发布(15)
评论
刷题
收藏
想去三亚看海的话题终结者all-in校招
关注TA,不错过内容更新
关注
2022-09-22 14:49
西安交通大学 数据分析师
秋招offer选择
投票
目前拿到两个offer,薪资都差不太多,单论前景,友友们觉得应该选哪个?
0
点赞
评论
收藏
分享
2022-08-04 10:18
西安交通大学 数据分析师
题解 | #错误出现的次数#
x = input().split() print(x.count('0'))
0
点赞
评论
收藏
分享
2022-08-03 14:54
西安交通大学 数据分析师
题解 | #列表的最值运算#
x=map(int,input().split()) y=[] for i in x: y.append(i) print(max(y),min(y),sep='\n')
0
点赞
评论
收藏
分享
2022-07-29 11:29
西安交通大学 数据分析师
题解 | #不低于与不超过#
k,x,y=map(float,input().split()) print(k<=x) print(k>=y)
0
点赞
评论
收藏
分享
2022-07-24 11:43
西安交通大学 数据分析师
题解 | #牛客网不同毕业年份的大佬#
import pandas as pd Nowcoder = pd.read_csv('Nowcoder.csv', sep=',') graduate_num = Nowcoder.groupby('Graduate_year')['Achievement_value'].max() print(graduate_num)
0
点赞
评论
收藏
分享
2022-07-22 09:26
西安交通大学 数据分析师
题解 | #大佬用户成就值比例#
import pandas as pd Nowcoder = pd.read_csv('Nowcoder.csv', sep=',') print(Nowcoder['Achievement_value']/Nowcoder['Achievement_value'].sum())
0
点赞
评论
收藏
分享
2022-07-21 10:53
西安交通大学 数据分析师
题解 | #Python用户的平均提交次数#
import pandas as pd Nowcoder = pd.read_csv('Nowcoder.csv', sep=',') print(round(Nowcoder[Nowcoder['Language']=='Python'].Number_of_submissions.mean(),1))
0
点赞
评论
收藏
分享
2022-07-09 16:38
西安交通大学 数据分析师
题解 | #统计牛客网刷题数量500以上的大佬#
import pandas as pd Nowcoder = pd.read_csv('Nowcoder.csv',sep=',') print(Nowcoder.loc[Nowcoder['Achievement_value']>500, ['Level', 'Achievement_value']])
0
点赞
评论
收藏
分享
2022-07-07 16:03
西安交通大学 数据分析师
题解 | #获取有奖金的员工相关信息。#
select e.emp_no, e.first_name, e.last_name, e_b.btype, s.salary, round((case e_b.btype when 1 then salary*0.1 when 2 ...
0
点赞
评论
收藏
分享
2022-07-05 12:18
西安交通大学 数据分析师
题解 | #统计运动会项目报名人数(二)#
import pandas as pd signup = pd.read_csv('signup.csv') items = pd.read_csv('items.csv') df = items.set_index('item_id').join(signup.set_index('item_id'),on='item_id',how="outer") print(df.groupby('item_name').size())
0
点赞
评论
收藏
分享
2022-07-04 21:09
西安交通大学 数据分析师
题解 | #牛牛的四叶玫瑰数#
def fn(m,n): for i in range(m,n+1): str0 = str(i) count = 0 for j in range(le...
0
点赞
评论
收藏
分享
2022-07-03 17:40
西安交通大学 数据分析师
题解 | #小乐乐计算函数#
def max3(a,b,c): return max((a+b,b,c))/(max((a,b+c,c))+max((a,b,c+b))) a,b,c = map(int,input().split()) m = max3(a, b, c) print('%2f'%m)
0
点赞
评论
收藏
分享
2022-06-30 15:39
西安交通大学 数据分析师
题解 | #图像相似度#
m,n = map(int, input().split()) c = [] d = [] count = 0 for i in range(m): c.append(list(map(int, input().split()))) for j in range(m): d.append(list(map(int, input().split()))) for i in range(m): for j in range(n): if int(c[i][j]) == int(d[i][j]): count += 1 print('%.2f' % (count/(m*n)*100))
0
点赞
评论
收藏
分享
2022-06-29 17:10
西安交通大学 数据分析师
题解 | #矩阵计算#
n,m = map(int, input().split()) k = [] summ = 0 for i in range(n): val = list(map(int, input().split())) k.append(val) for i in range(n): &nb...
0
点赞
评论
收藏
分享
2022-06-27 21:07
西安交通大学 数据分析师
题解 | #统计鸢尾花数据分位数#
import pandas as pd iris = pd.read_csv('iris.csv', sep=',') a=iris.describe().iloc[4:7,0:4] print(a.quantile([0.25,0.5,0.75]))
0
点赞
评论
收藏
分享
1
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务