feat: finalizado triangleArea

This commit is contained in:
Vitor Soares 2022-10-28 11:42:49 -03:00
parent 9f0206057a
commit 9cc120fabb

View File

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