Merge pull request 'feature(maxValue): cria funcao que encontra maior elemento de um array' (#3) from feature/maxValue into master
Reviewed-on: #3
This commit is contained in:
commit
6da5e031ed
@ -1,4 +1,15 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
let maior = -1;
|
||||
|
||||
if (values.length === 0) {
|
||||
maior = 0;
|
||||
} else {
|
||||
for (let i in values) {
|
||||
if (values[i] > maior) {
|
||||
maior = values[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
return maior;
|
||||
}
|
Loading…
Reference in New Issue
Block a user