1
0
Fork 0
mirror of https://gitlab.com/mfocko/CodeWars.git synced 2024-09-16 20:56:57 +02:00
CodeWars/7kyu/highest_and_lowest/solution.js

12 lines
298 B
JavaScript
Raw Permalink Normal View History

function highAndLow(numbers){
numbers = numbers.split(' ');
let min = parseInt(numbers[0]),
max = parseInt(numbers[0]);
for (let i = 1; i < numbers.length; i++) {
let n = parseInt(numbers[i]);
if (n < min) min = n;
else if (n > max) max = n;
}
return `${max} ${min}`;
}