forked from M3-Academy/challenge-algorithms-v2.0
development #11
@ -1,4 +1,8 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
let numMaior = Math.max.apply(null, values);
|
||||
|
||||
if(values.length == []) return 0;
|
||||
|
||||
return numMaior;
|
||||
}
|
Loading…
Reference in New Issue
Block a user