merge all challenges #1

Merged
Gabriel_Lehmann merged 19 commits from development into master 2022-10-30 04:26:03 +00:00
Showing only changes of commit 583b67b908 - Show all commits

View File

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