当前位置: 首页 > article >正文

【刷题】【力扣】【178】【中等】分数排名

文章目录

    • @[toc]
  • 题目描述
  • 示例
    • 输入
    • 输出
  • MySQL实现
    • 方法1
    • 方法2
    • 方法3
  • Pandas实现

题目描述


  • 表:Scores
+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| id          | int     |
| score       | decimal |
+-------------+---------+
id 是该表的主键(有不同值的列)
该表的每一行都包含了一场比赛的分数, Score 是一个有两位小数点的浮点值
  • 编写一个解决方案来查询分数的排名,排名按以下规则计算:
    • 分数应按从高到低排列
    • 如果两个分数相等,那么两个分数的排名应该相同
    • 在排名相同的分数后,排名数应该是下一个连续的整数,换句话说,排名之间不应该有空缺的数字
  • score降序返回结果表

示例


输入

  • Scores
+----+-------+
| id | score |
+----+-------+
| 1  | 3.50  |
| 2  | 3.65  |
| 3  | 4.00  |
| 4  | 3.85  |
| 5  | 4.00  |
| 6  | 3.65  |
+----+-------+

输出

+-------+------+
| score | rank |
+-------+------+
| 4.00  | 1    |
| 4.00  | 1    |
| 3.85  | 2    |
| 3.65  | 3    |
| 3.65  | 3    |
| 3.50  | 4    |
+-------+------+

MySQL实现


方法1

select score, dense_rank() over (order by score desc) as 'rank'
from Scores;

方法2

select t1.score,
       (select count(distinct t2.score)
        from Scores t2
        where t2.score >= t1.score) as 'rank'
from Scores t1
order by t1.score desc;

方法3

select t1.score, count(distinct t2.score) as 'rank'
from Scores t1
         inner join Scores t2 on t2.score >= t1.score
group by t1.id, t1.score
order by t1.score desc;

Pandas实现


# -*- coding: utf-8 -*-
# @Time     : 2025/1/11 23:11
# @Author   : 从心
# @File     : 178.py
# @Software : PyCharm

import pandas as pd


def order_scores(scores: pd.DataFrame) -> pd.DataFrame:
    scores['rank'] = scores['score'].rank(method='dense', ascending=False)

    return scores.sort_values('score', ascending=False).drop('id', axis=1)


http://www.kler.cn/a/505894.html

相关文章:

  • 深度学习-87-大模型训练之预训练和微调所用的数据样式
  • Freeswitch使用media_bug能力实现回铃音检测
  • Franka例程学习——force_control
  • Windows部署NVM并下载多版本Node.js的方法(含删除原有Node的方法)
  • 【Sql递归查询】Mysql、Oracle、SQL Server、PostgreSQL 实现递归查询的区别与案例(详解)
  • SpringBoot之LazyInitializationBeanFactoryPostProcessor类源码学习
  • C# 25Dpoint
  • STC的51单片机LED点灯基于KEIL
  • zig语言初探:来写贪吃蛇游戏
  • 深入详解人工智能语音识别之声学模型与语言模型:掌握HMM、CTC等方法
  • 【开源免费】基于SpringBoot+Vue.JS社团管理系统(JAVA毕业设计)
  • 第十二章:算法与程序设计
  • Spring Boot 下的Swagger 3.0 与 Swagger 2.0 的详细对比
  • 深度学习中的卷积和反卷积(四)——卷积和反卷积的梯度
  • 如何监控和防范小红书笔记详情API的安全风险?
  • 脚本化挂在物理盘、nfs、yum、pg数据库、nginx(已上传脚本)
  • Unity解决滑动条的value值的滑动条消失问题
  • RabbitMQ(三)
  • Agile Scrum 敏捷开发方法
  • 基于Verilog的简易音乐节奏游戏设计
  • 【芯片封测学习专栏 -- 2D | 2.5D | 3D 封装的区别和联系】
  • ElasticSearch的劈山斧-自定义评分
  • 一步到位Python Django部署,浅谈Python Django框架
  • 性能测试 - Locust WebSocket client
  • node mysql和mysql2有什么区别
  • 潜力巨大但道路曲折的量子计算:探索未来科技的无限可能