Convert Clock Format
Schedules and logs are often easier to read in 24-hour time, because there is no confusion between morning and evening hours. The function time_conversion receives a string s in the format hh:mm:ssAM or hh:mm:ssPM. Return the same time in HH:MM:SS format, handling the special cases: 12AM becomes 00, and 12PM stays 12.
Примеры
Ввод
"07:05:45PM"Вывод
"19:05:45"Ввод
"12:00:00AM"Вывод
"00:00:00"Ввод
"12:00:00PM"Вывод
"12:00:00"Нужно реализовать
def time_conversion(s: str) -> str:
Теги
strings
Connectez-vous pour voir l'historique des soumissions
Se connecterConnectez-vous pour utiliser le Mentor IA
Se connecterTests12
Visible tests
Test caché 7
Test caché 8
Test caché 9
Test caché 10
Test caché 11
Test caché 12
They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.
Focus radio
Paused · SomaFM · Fluid