feat: Resolvido questao triangleArea

This commit is contained in:
ThiagoDuutra 2022-10-28 16:08:31 -03:00
parent e8f4b3136e
commit 208a8f8bf9

View File

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