Question: Write a function to_secs that converts hours, minutes and seconds to a total number of seconds. Here are some tests that should pass: test(to_secs(2, 30,

Write a function to_secs that converts hours, minutes and seconds to a total number of seconds. Here are some tests that should pass:

test(to_secs(2, 30, 10) == 9010)

test(to_secs(2, 0, 0) == 7200)

test(to_secs(0, 2, 0) == 120)

test(to_secs(0, 0, 42) == 42)

test(to_secs(0, -10, 10) == -590)



Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!