feat: algoritmo 2

This commit is contained in:
Patrick Reis Santos 2022-10-30 10:27:00 -03:00
parent 45d0b1727b
commit 7de8a8fc7f

View File

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