You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Cockroach is one of the fastest insects. Write a function which takes its speed in km per hour and returns the number of whole(floored) cm it moves per second.
# Example:
# cockroach_speed(1.08) == 30
# Note! x is Double type Real number and x >= 0, result should be Integer type.