Compare commits

...

1 Commits

Author SHA1 Message Date
48e509acc9 feat(triangleArea): Responde função 02 2022-10-30 15:24:46 -03:00

View File

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