forked from M3-Academy/challenge-algorithms-v2.0
feat(03-maxvalue):completead third challenge
This commit is contained in:
parent
c6f6df9c59
commit
82346e67ca
@ -1,4 +1,14 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
if (values.length == 0){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return values.reduce((maiornum,atualnum) => {
|
||||||
|
if(maiornum > atualnum){
|
||||||
|
return maiornum;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
return atualnum;
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user