0
/ 50
Given an array of double
values that contains the prices of merchandise, return the range of the prices (the difference between the...
Given an array of double
values that contains the prices of merchandise, return the range of the prices (the difference between the largest price and the smallest). You may assume that all values in the array are positive and that the highest price does not exceed 1000.00. You may also assume there is at least one value in the array.
Examples:
priceRange({66.66, 44.44, 22.22, 99.99, 55.55}) -> 77.77
priceRange({100.00, 250.00, 300.00, 470.00}) -> 370.00
priceRange({14.95, 3.25, 6.02, 45.20, 8.63, 19.45, 37.11}) -> 41.95
Your feedback will appear here when you check your answer.