0681. Next Closest Time
https://leetcode.com/problems/next-closest-time
Description
Given a time
represented in the format "HH:MM"
, form the next closest time by reusing the current digits. There is no limit on how many times a digit can be reused.
You may assume the given input string is always valid. For example, "01:34"
, "12:09"
are all valid. "1:34"
, "12:9"
are all invalid.
Example 1:
Example 2:
Constraints:
time.length == 5
time
is a valid time in the form"HH:MM"
.0 <= HH < 24
0 <= MM < 60
ac
Last updated