feat(trianglearea):aplicando a função no teste 2

This commit is contained in:
Gabriel Bernardini 2022-10-29 11:58:17 -03:00
parent 5bb9f52ff7
commit c839733a55

View File

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