forked from M3-Academy/challenge-algorithms-v2.0
Feat:Finalizando maxValue
This commit is contained in:
parent
3fabe8762d
commit
38030a8427
@ -1,4 +1,16 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
const Arr = values
|
||||||
|
let Maior = values[0]
|
||||||
|
if(Maior === undefined){
|
||||||
|
return Maior = 0;
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
Arr.forEach((atual)=>{
|
||||||
|
if(Maior < atual){
|
||||||
|
Maior = atual
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
return Maior;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user