forked from M3-Academy/challenge-algorithms-v2.0
Merge branch 'release/03.00'
This commit is contained in:
commit
9738ba689c
@ -1,3 +1,3 @@
|
||||
export function triangleArea(base, height) {
|
||||
// your code here
|
||||
return base*height/2
|
||||
}
|
@ -1,4 +1,16 @@
|
||||
export function maxValue(values) {
|
||||
// implementar logica aqui
|
||||
|
||||
const Arr = values
|
||||
let Maior = values[0]
|
||||
if(Maior === undefined){
|
||||
return Maior = 0;
|
||||
}
|
||||
else{
|
||||
Arr.forEach((atual)=>{
|
||||
if(Maior < atual){
|
||||
Maior = atual
|
||||
}
|
||||
})
|
||||
}
|
||||
return Maior;
|
||||
}
|
Loading…
Reference in New Issue
Block a user