Leetcode 1736. Latest Time by Replacing Hidden Digits

Posted SnailTyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 1736. Latest Time by Replacing Hidden Digits相关的知识,希望对你有一定的参考价值。

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Latest Time by Replacing Hidden Digits

2. Solution

**解析:**枚举所有可能情况,替换对应的?即可。

  • Version 1
class Solution:
    def maximumTime(self, time: str) -> str:
        result = ''
        if time[0] == '?':
            if time[1] < '4' or time[1] == '?':
                result += '2'
            else:
                result += '1'
        else:
            result += time[0]

        if time[1] == '?':
            result += '9' if result[-1] < '2' else '3'
        else:
            result += time[1]

        result += ':'
        result += '5' if time[3] == '?' else time[3]
        result += '9' if time[4] == '?' else time[4]
        return result

Reference

  1. https://leetcode.com/problems/latest-time-by-replacing-hidden-digits/

以上是关于Leetcode 1736. Latest Time by Replacing Hidden Digits的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] 1736. 替换隐藏数字得到的最晚时间

LeetCode题库1736求解隐藏最晚时间

LeetCode题库1736求解隐藏最晚时间

1736. 替换隐藏数字得到的最晚时间

1736. 替换隐藏数字得到的最晚时间

LeetCode1736. 替换隐藏数字得到的最晚时间/1743. 从相邻元素对还原数组/671. 二叉树中第二小的节点