알고리즘 39 - Find Maximum and Minimum Values of a List
Q.
Your task is to make two functions, max and min (maximum and minimum in PHP and Python, maxi and mini in Julia) that take a(n) array/vector of integers list as input and outputs, respectively, the largest and lowest number in that array/vector.
#Examples
max([4,6,2,1,9,63,-134,566]) returns 566
min([-52, 56, 30, 29, -54, 0, -110]) returns -110
max([5]) returns 5
min([42, 54, 65, 87, 0]) returns 0
A)
var min = function(list){
return Math.min(...list);
}
var max = function(list){
return Math.max(...list);
}
Author And Source
이 문제에 관하여(알고리즘 39 - Find Maximum and Minimum Values of a List), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@pearpearb/알고리즘-39-Find-Maximum-and-Minimum-Values-of-a-List
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
var min = function(list){
return Math.min(...list);
}
var max = function(list){
return Math.max(...list);
}
Author And Source
이 문제에 관하여(알고리즘 39 - Find Maximum and Minimum Values of a List), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@pearpearb/알고리즘-39-Find-Maximum-and-Minimum-Values-of-a-List저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)