首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
在午休的潜伏者很甜美
获赞
3
粉丝
1
关注
13
看过 TA
76
阿坝师范学院
2025
C++
IP属地:安徽
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑在午休的潜伏者很甜美吗?
发布(26)
评论
刷题
收藏
在午休的潜伏者很甜美
关注TA,不错过内容更新
关注
2024-12-31 00:14
阿坝师范学院 C++
避雷博世
10000的offer是不发的(实习后已发意向)缺人了4000的实习是想让我再回去干的
博世稳定性 16人发布
投递博世等公司10个岗位
0
点赞
评论
收藏
分享
2024-05-15 00:01
阿坝师范学院 C++
题解 | #浙大不同难度题目的正确率#
SELECT difficult_level, AVG(IF(result='right',1,0)) AS correct_rate FROM user_profile u, question_practice_detail qpd, question_detail qd WHERE u.device_id = qpd.device_id AND qpd.question_id = qd.question_id AND university='浙江大学' GROUP BY difficult_level ORDER BY correct_rate;
0
点赞
评论
收藏
分享
2024-05-15 00:00
阿坝师范学院 C++
题解 | #找出每个学校GPA最低的同学#
select device_id,university,gpa from user_profile where (university,gpa) in (select university,min(gpa) from user_profile group by university) order by university
0
点赞
评论
收藏
分享
2024-05-14 23:59
阿坝师范学院 C++
题解 | #截取出年龄#
select substring(profile,12,2) age, count(substring(profile,12,2)) number from user_submit group by age;
0
点赞
评论
收藏
分享
2024-05-14 23:56
阿坝师范学院 C++
题解 | #计算用户的平均次日留存率#
select count(t2.date)/count(t1.date) from (select distinct device_id,date from question_practice_detail) t1 left join (select distinct device_id,date from question_practice_detail) t2 on t1.device_id = t2.device_id and t2.date = date_add(t1.date,interval 1 day)
0
点赞
评论
收藏
分享
2024-05-14 23:03
阿坝师范学院 C++
题解 | #计算25岁以上和以下的用户数量#
select IF(age>=25,'25岁及以上','25岁以下') as age_cut,count(*) from user_profile group by age_cut;
0
点赞
评论
收藏
分享
2024-05-14 21:50
阿坝师范学院 C++
题解 | #分组过滤练习题#
select university,round(avg(question_cnt),3) as avg_question_cnt,round(avg(answer_cnt),3) as avg_answer_cnt from user_profile group by university having avg(question_cnt)<5 or avg(answer_cnt)<20;
0
点赞
评论
收藏
分享
2024-05-14 21:46
阿坝师范学院 C++
题解 | #分组计算练习题#
select gender,university,count(*) as user_num,round(avg(active_days_within_30),1) as avg_active_day,round(avg(question_cnt),1) as avg_question_cnt from user_profile group by university,gender;
0
点赞
评论
收藏
分享
2024-05-14 19:12
阿坝师范学院 C++
题解 | #查询结果限制返回行数#
select device_id from user_profile limit 0,2;
0
点赞
评论
收藏
分享
2024-05-07 16:49
阿坝师范学院 C++
题解 | #称砝码#
#include <iostream> #include <set> using namespace std; int main() { set<int> f,tmp; set<int>::iterator it; int n,a[10],b[10],i,j,k; cin>>n; for(i=0;i<n;i++) cin>>a[i]; for(i=0;i<n;i++) cin>>b[i]; f.insert(...
0
点赞
评论
收藏
分享
阿坝师范学院 C++
@匿名牛油:
华为od面试
0
点赞
评论
收藏
分享
2024-04-10 21:37
阿坝师范学院 C++
题解 | #火车进站#
#include <iostream> #include <algorithm> #include <stack> #include <vector> using namespace std; vector<int> T,T1; bool func() { stack<int> ST; int i = 0; int j; int len=T.size(); for(j=0;j<len;j++){ ST.push(T[j]); while (!S...
0
点赞
评论
收藏
分享
2024-04-07 02:47
阿坝师范学院 C++
题解 | #成绩排序#
#include <algorithm> #include <iostream> #include <string> #include<vector> #include<stdlib.h> using namespace std; struct Score{ string name; int sc; }; bool cmp1(const Score &a,const Score &b){ return a.sc>b.sc?true:false; } bool cmp2(const Sc...
0
点赞
评论
收藏
分享
2024-03-28 00:27
阿坝师范学院 C++
题解 | #字符串通配符#
#include <iostream> #include <cctype> #include <unordered_map> #include <string> using namespace std; unordered_map<string, bool> m; string s1,s2; bool dp(int i,int j){ if(i==s1.length()) return j==s2.length(); if(j==s2.length()) { while(s1[i]=='*'){ ...
0
点赞
评论
收藏
分享
2024-03-27 22:23
阿坝师范学院 C++
题解 | #矩阵乘法计算量估算#
原来是这么算的
0
点赞
评论
收藏
分享
1
2
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客企业服务