LeetCode 197. Rising Temperature (上升的温度)
Posted jimmycheng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 197. Rising Temperature (上升的温度)相关的知识,希望对你有一定的参考价值。
题目标签:
题目给了我们一个 温度表格,让我们找到 所有温度比之前一天高的,返回id。
建立 Weather w1, Weather w2,找到当w1 的温度 大于 w2 的时候,而且 w1 的日期是在w2 的后一天,返回id。
Java Solution:
Runtime: 338 ms, faster than 66 %
Memory Usage: N/A
完成日期:06/01/2019
关键点:利用TO_DAYS 来比较日期。
# Write your mysql query statement below SELECT w1.Id FROM Weather w1, Weather w2 WHERE w1.Temperature > w2.Temperature AND TO_DAYS(w1.RecordDate)-TO_DAYS(w2.RecordDate)=1;
LeetCode 题目列表 - LeetCode Questions List
题目来源:https://leetcode.com/
以上是关于LeetCode 197. Rising Temperature (上升的温度)的主要内容,如果未能解决你的问题,请参考以下文章
197. Rising Temperature--solution
LeetCode 197. Rising Temperature (上升的温度)