Skip to content

Latest commit

 

History

History
68 lines (49 loc) · 838 Bytes

[0180] 连续出现的数字.md

File metadata and controls

68 lines (49 loc) · 838 Bytes
title tags categories author comments updated permalink mathjax top description date
[0180] 连续出现的数字
leetcode
leetcode
张学志
true
false
false
false
...
2019-12-31 16:03:00 -0800

题目描述

编写一个 SQL 查询,查找所有至少连续出现三次的数字。

+----+-----+
| Id | Num |
+----+-----+
| 1  |  1  |
| 2  |  1  |
| 3  |  1  |
| 4  |  2  |
| 5  |  1  |
| 6  |  2  |
| 7  |  2  |
+----+-----+

例如,给定上面的 Logs 表, 1 是唯一连续出现至少三次的数字。

+-----------------+
| ConsecutiveNums |
+-----------------+
| 1               |
+-----------------+

题目代码

题目解析

方法一

方法二

方法三