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