最小时间差
最小时间差
给定一个 24 小时制(小时:分钟 “HH:MM”)的时间列表,找出列表中任意两个时间的最小时间差并以分钟数表示。
输入:timePoints = [“23:59”,”00:00”]
输出:1
输入:timePoints = [“00:00”,”23:59”,”00:00”]
输出:0
1 | const getTime = str => { |
评论
LivereValine
给定一个 24 小时制(小时:分钟 “HH:MM”)的时间列表,找出列表中任意两个时间的最小时间差并以分钟数表示。
输入:timePoints = [“23:59”,”00:00”]
输出:1
输入:timePoints = [“00:00”,”23:59”,”00:00”]
输出:0
1 | const getTime = str => { |