forked from M3-Academy/challenge-algorithms-v2.0
feat(03-maxValue): Cria a função
This commit is contained in:
parent
2f5d5c9c03
commit
00dff8d136
@ -1,5 +1,5 @@
|
|||||||
export function triangleArea(base, height) {
|
export function triangleArea(base, height) {
|
||||||
let result;
|
let result;
|
||||||
result = (base * height) / 2;
|
result = (base * height) / 2;
|
||||||
return result
|
return result;
|
||||||
}
|
}
|
@ -1,4 +1,15 @@
|
|||||||
export function maxValue(values) {
|
export function maxValue(values) {
|
||||||
// implementar logica aqui
|
let max = 0;
|
||||||
|
max = values[0];
|
||||||
|
|
||||||
|
if (values.length === 0){
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
for(let i= 0; i < values.length; i++) {
|
||||||
|
if (values[i] > max) {
|
||||||
|
max = values[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return max;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user