feat(triangleArea): Finaliza algoritmo

This commit is contained in:
William Simão Cavalcante 2022-10-28 12:44:05 -03:00
parent 3ad3c1aa8d
commit b7e0d17d1e

View File

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