We use cookies (including Google cookies) to personalize ads and analyze traffic. By continuing to use our site, you accept our Privacy Policy.

Number of Valid Clock Times

Difficulty: Easy


Problem Description

You are given a string of length 5 called time, representing the current time on a digital clock in the format "hh:mm". The earliest possible time is "00:00" and the latest possible time is "23:59". In the string time, the digits represented by the ? symbol are unknown, and must be replaced with a digit from 0 to 9. Return an integer answer, the number of valid clock times that can be created by replacing every ? with a digit from 0 to 9.


Key Insights

  • The first two characters represent hours and must be in the range of "00" to "23".
  • The last two characters represent minutes and must be in the range of "00" to "59".
  • Each ? can be replaced by any digit from 0 to 9, but must adhere to the valid hour and minute constraints.
  • The total number of valid times can be computed by enumerating all possible replacements for ? and filtering valid combinations.

Space and Time Complexity

Time Complexity: O(1) - The operations are constant in terms of input size, as the string length is fixed at 5. Space Complexity: O(1) - We use a fixed amount of space for variables regardless of input.


Solution

To find the number of valid clock times, we will:

  1. Parse the string to identify the positions of ?.
  2. For each ?, determine the valid digit replacements based on their positions (hours or minutes).
  3. Count the total combinations of valid replacements and return the result.

We will use simple conditional checks to ensure the replacements yield valid hour and minute values.


Code Solutions

def count_valid_times(time: str) -> int:
    valid_count = 1
    
    # Handle hours
    if time[0] == '?' and time[1] == '?':
        valid_count *= 24  # 00 to 23
    elif time[0] == '?':
        valid_count *= 3 if time[1] < '4' else 2  # 0? or 1? (3 options), 2? (2 options)
    elif time[1] == '?':
        valid_count *= 10 if time[0] == '2' else 10  # ?0 to ?3 or ?0 to ?9

    # Handle minutes
    if time[3] == '?' and time[4] == '?':
        valid_count *= 60  # 00 to 59
    elif time[3] == '?':
        valid_count *= 6  # ?0 to ?5
    elif time[4] == '?':
        valid_count *= 10  # ?0 to ?9

    return valid_count

# Example usage:
print(count_valid_times("?5:00"))  # Output: 2
print(count_valid_times("0?:0?"))  # Output: 100
print(count_valid_times("??:??"))  # Output: 1440
← Back to All Questions