leetcode(리트코드)-1736 Latest Time by Replacing Hidden Digits(PYTHON)
leetcode(리트코드)-1736 Latest Time by Replacing Hidden Digits(PYTHON)
leetcode 1736 - Latest Time by Replacing Hidden Digits 문제입니다.
1. 문제
https://leetcode.com/problems/latest-time-by-replacing-hidden-digits/
2. Input , Output
3. 분류 및 난이도
Eazy 난이도 문제입니다.
4. 문제 해석
- time이 주어집니다
- ”?”로 된 곳에 임의의 숫자를 넣을 때 가장 오래된 시간을 만들어서 리턴하세요 (00:00 ~ 23:59)
5. code
코드설명
- 하드코딩
python
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Solution:
def maximumTime(self, time: str) -> str:
res = ""
for i in range(len(time)):
if time[i] == "?":
if i == 0 :
if time[1] == "?" or time[1] <"4":
res +="2"
else :
res +="1"
elif i == 1 :
if res[0] == "2":
res += "3"
else :
res += "9"
elif i == 3 :
res += "5"
elif i == 4 :
res += "9"
else:
res += time[i]
return res
6. 결과 및 후기, 개선점
필요시 c++로 짜드립니다.
설명이 필요하다면 댓글을 달아주세요.
This post is licensed under CC BY 4.0 by the author.