feat(triangleArea): algoritmo criado.

This commit is contained in:
Luiz Felipe Silva 2022-10-31 22:15:39 -03:00
parent df22a83f6b
commit eac97ed1d4

View File

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