版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2017/03/18/LeetCode-539-Minimum-Time-Difference/
题目要求
Given a list of 24-hour clock time points in “Hour:Minutes” format, find the minimum minutes difference between any two time points in the list.
Example 1:
Input: [“23:59”,”00:00”]
Output: 1
Note:
- The number of time points in the given list is at least 2 and won’t exceed 20000.
- The input time is legal and ranges from 00:00 to 23:59.
题意解析
计算最短的时间间隔,注意24小时制值得变化。
解法分析
将时间进行转换,转换成整型,转换方式为hour*24+minute,然后排序,最后计算就可以了。
解题代码
|
|