Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 343 Bytes

File metadata and controls

20 lines (13 loc) · 343 Bytes

Convert Minutes into Seconds

Write a function that takes an integer minutes and converts it to seconds.


Examples:

convert(5) ➞ 300
convert(3) ➞ 180
convert(2) ➞ 120

Solution: