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
PostgreSQLv16

Šeit parādīsies koda izpildes rezultāts

Tests12
Visible tests
Slēptais tests 7
Slēptais tests 8
Slēptais tests 9
Slēptais tests 10
Slēptais tests 11
Slēptais tests 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