LeetCode 197: Rising Temperature
Problem Restatement We are given a table named Weather . Schema: Column Type id int recordDate date temperature int The id column is unique. There are no duplicate recordDate values. We need to find the id of every date where the temperature is higher than the temperature on the previous day. Example table: id recordDate temperature 1 2015-01-01 10 2 2015-01-02 25 3 2015-01-03 20 4 2015-01-04 30 Expected output:...