人生苦短,但求成长
人生苦短,但求成长
全部文章
分类
题解(166)
归档
标签
去牛客网
登录
/
注册
人生苦短,但求成长的博客
全部文章
(共150篇)
题解 | #统计每个学校的答过题的用户的平均答题数#
select t1.university,round(count(1)/count(distinct t1.device_id), 4) as avg_answer_cnt from user_profile t1 join question_practice_detail t2 on t1.dev...
Mysql
2022-03-11
1
292
题解 | #浙江大学用户题目回答情况#
select t1.device_id,t1.question_id,t1.result from question_practice_detail t1 join user_profile t2 on t1.device_id = t2.device_id where t2.university ...
Mysql
2022-03-11
5
265
题解 | #分组排序练习题#
select university,round(avg(question_cnt),4) as avg_question_cnt from user_profile group by university order by avg_question_cnt
Mysql
2022-03-11
1
254
题解 | #分组过滤练习题#
select university, round(avg(question_cnt),3) as avg_question_cnt, round(avg(answer_cnt),3) as avg_answer_cnt from user_profile group ...
Mysql
2022-03-11
4
335
题解 | #分组计算练习题#
select gender,university, count(1) as user_num, round(avg(active_days_within_30),1) as avg_active_day, round(avg(question_cnt),1)...
Mysql
2022-03-11
4
396
题解 | #操作符混合运用#
select device_id,gender,age,university,gpa from user_profile where (gpa > 3.5 and university = '山东大学') or (gpa > 3.8 and university = '复旦大学')
Mysql
2022-03-11
7
343
题解 | #求最小公倍数#都快忘了
while True: try: m, n = map(int, input().split()) max_num = m if m >= n else n min_num = n if m >= n else ...
Python3
2022-02-28
9
1378
题解 | #求解立方根#好难想啊
n = float(input()) if n == 0: print(0.0) elif n > 0: sig = 1 else: sig = -1 n = abs(n) if n >= 1: start = 1 end = n else:...
Python3
2022-02-28
6
1459
题解 | #字符逆序#这题应该是最短的了吧
while True: try: str_input = input() print(str_input[::-1]) except: break
Python3
2022-02-28
5
0
题解 | #记负均正II#记住while True是用来处理输入的
num_list = [] while True: try: num_list.append(int(input())) except: over_list, down_list = [], [] for i in ...
Python3
2022-02-28
8
1486
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页