Merge pull request 'feat(desafio): Adiciona segunda tarefa concluida' (#1) from feature/triangleArea into feature/algoritmo

Reviewed-on: #1
This commit is contained in:
Manuela Luana Schumacker Tavares 2022-10-28 17:38:40 +00:00
commit f67175e961

View File

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