3114. Latest Time You Can Obtain After Replacing Characters
You are given a string
s
representing a 12-hour format time where some of the digits (possibly none) are replaced with a"?"
.12-hour times are formatted as
"HH:MM"
, whereHH
is between00
and11
, andMM
is between00
and59
. The earliest 12-hour time is00:00
, and the latest is11:59
.You have to replace all the
"?"
characters ins
with digits such that the time we obtain by the resulting string is a valid 12-hour format time and is the latest possible.Return the resulting string.
1 |
|