feat(triangleArea): Retono da função, funcional em todos os testes.

This commit is contained in:
Ramon Dias Ferreira 2022-10-28 14:08:31 -03:00
parent 3788117b51
commit c7ec50ec8b

View File

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