forked from M3-Academy/challenge-algorithms-v2.0
Feat(triangleArea): Adiciona logica do algoritmo que retorna a área de um triângulo
This commit is contained in:
parent
815fad9185
commit
9b8ea88441
@ -1,3 +1,4 @@
|
|||||||
export function triangleArea(base, height) {
|
export function triangleArea(base, height) {
|
||||||
// your code here
|
// your code here
|
||||||
|
return (base * height) / 2;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user