feat(challenge): desafio area do triangulo finalizado

This commit is contained in:
Thiago Bronisio 2022-10-28 23:37:33 -03:00
parent 67cbf67545
commit e673ad7c03

View File

@ -1,3 +1,4 @@
export function triangleArea(base, height) {
// your code here
return base * height / 2;
}