Skip to content

Latest commit

 

History

History
3 lines (2 loc) · 219 Bytes

File metadata and controls

3 lines (2 loc) · 219 Bytes

Write a function minutes_to_seconds(minutes: int) -> int that takes a number of minutes and returns the equivalent number of seconds.

There are 60 seconds in a minute, so if the input is 3, the output should be 180.