forked from M3-Academy/challenge-algorithms-v2.0
feat: resolve funcão maxValue
This commit is contained in:
parent
e7bb1a6694
commit
1f1e05e78d
@ -1,4 +1,13 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
let numeromaior = 0;
|
||||
if (values[0] < numeromaior)
|
||||
numeromaior = values[0];
|
||||
let i = 0;
|
||||
for (i = 0; i < values.length; i++){
|
||||
if (numeromaior < values[i]){
|
||||
numeromaior = values[i];
|
||||
}
|
||||
}
|
||||
return numeromaior;
|
||||
}
|
Loading…
Reference in New Issue
Block a user