Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Docker
- Real or Not? NLP with Disaster Tweets
- 백준
- 캐치카페
- AI 경진대회
- programmers
- SW Expert Academy
- 자연어처리
- 편스토랑
- PYTHON
- 금융문자분석경진대회
- leetcode
- gs25
- 데이콘
- 파이썬
- 코로나19
- 맥북
- Kaggle
- Git
- github
- 편스토랑 우승상품
- 우분투
- 프로그래머스 파이썬
- hackerrank
- Baekjoon
- ChatGPT
- dacon
- 더현대서울 맛집
- 프로그래머스
- ubuntu
Archives
- Today
- Total
솜씨좋은장씨
[HackerRank] Time Conversion (Python) 본문
728x90
반응형
Given a time in 12-hour AM/PM format, convert it to military (24-hour) time.
Note: Midnight is 12:00:00AM on a 12-hour clock, and 00:00:00 on a 24-hour clock. Noon is 12:00:00PM on a 12-hour clock, and 12:00:00 on a 24-hour clock.
Function Description
Complete the timeConversion function in the editor below. It should return a new string representing the input time in 24 hour format.
timeConversion has the following parameter(s):
- s: a string representing time in 12 hour format
Input Format
A single string s containing a time in 12-hour clock format (i.e.: hh:mm:ssAM or hh:mm:ssPM), where 01 <= hh <= 12 and 00 <= mm, ss <= 59.
Constraints
- All input times are valid
Output Format
Convert and print the given time in 24-hour format, where 00 <= hh <= 23.
Sample Input 0
07:05:45PM
Sample Output 0
19:05:45
Solution
#!/bin/python3
import os
import sys
#
# Complete the timeConversion function below.
#
def timeConversion(s):
hour, minute, second_AMPM = s.split(':')
if second_AMPM[2:] == "PM" and hour != '12':
hour = str(int(hour) + 12)
if second_AMPM[2:] == "AM" and hour == '12':
hour = "00"
if second_AMPM[2:] == "PM" and hour == '12':
hour = "12"
conversion_time = hour + ':' + minute + ':' + second_AMPM[0:2]
return conversion_time
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Minimum Absolute Difference in an Array (Python) (1) | 2020.04.07 |
---|---|
[Programmers] 힙 : 더 맵게 (Python) (0) | 2020.04.06 |
[HackerRank] Birthday Cake Candles (Python) (0) | 2020.04.05 |
[HackerRank] Stack and Queues : A Tale of Two Stacks (0) | 2020.04.04 |
[HackerRank] Min-Max Sum (Python) (0) | 2020.04.03 |
Comments