feat: solucao triangleArea

This commit is contained in:
Rafael Sampaio de Oliveira 2022-10-28 08:05:57 -03:00
parent c6f6df9c59
commit 2f2efc8ebe

View File

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