You are given distance values between point A and B in the form of Kilometers(km).
Find the largest Distance, convert to miles and return.
miles = km/1.609344
Example:
(4.828032,8.04672, 16.09344) > 10
def numbers(n):
pass
import codewars_test as test
from solution import numbers
@test.describe("Example")
def test_group():
@test.it("test case")
def test_case():
test.assert_equals(numbers([4.828032,8.04672, 16.09344]), 10)
test.assert_equals(numbers([8.04672, 3.218688, 37.014912, 24.14016, 32.18688]), 23)
test.assert_equals(numbers([1.609344, 3.218688, 0]), 2)