牛客412408974号
牛客412408974号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客412408974号的博客
全部文章
(共8篇)
题解 | #【模板】栈#
class Stack: def __init__(self) -> None: self.items&nbs...
2022-09-28
0
229
题解 | #牛客网连续练习题目3天及以上的用户#
import pandas as pd from datetime import timedelta # 方法1 # nowcoder = pd.read_csv('nowcoder.csv') #&...
Python2
2022-09-02
0
293
题解 | #满足条件的用户的试卷完成数和题目练习数#
# 请你找到高难度SQL试卷得分平均值大于80并且是7级的红名大佬, # 统计他们的2021年试卷总完成次数和题目总练习次数, # 只保留2021年有试卷完成记录的用户。结果按试卷完成数升序,按题目练习数降序。 # full join 在mysql中是left join...
2022-08-29
0
279
题解 | #买卖股票的最好时机 ii#
#找出所有最大值点和最小值点,作差就是所得利润 # # @param prices int整型一维数组 # @return int整型 # class Solution: &nbs...
Python3
2022-08-28
0
305
题解 | #统计有未完成状态的试卷的未完成数和未完成率#
select exam_id, (count(start_time) - count(submit_time)) as incomplete_cnt, round((1- count(submit_time)/ count(sta...
2022-08-09
1
251
题解 | #对试卷得分做min-max归一化#
# 求每个用户对每份试卷的std #1、按照每门考试分类,统计每门考试的最大值,最小值,计算离差标准化 #2、筛选高难度试卷 #3、如果一个得分,就是原分数 (如果一个用户的max_score = min_score, 那么说明他的标准化离差值等于它自身) #4、一个人可以做多份试卷,需...
2022-08-09
0
267
连接方法选中cust_email
select t.cust_email from (select a.order_num, a.cust_id, b.cust_email from Or...
2022-07-01
0
194
题解 | #查找GPA最高值#
select gpa from ( select device_id, gpa, dense_rank() over(order by gpa) as 排名 from user_profile where university = '复旦大学'...
2022-05-24
1
220