feat: resolve triangleArea

This commit is contained in:
Naian Felix dos Santos 2022-10-28 08:08:39 -03:00
parent ae7051e762
commit f7f8e82a21

View File

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