feature/algoritmo #1

Merged
PatrickReisSantos merged 10 commits from feature/algoritmo into master 2022-11-02 16:06:18 +00:00
Showing only changes of commit 456a54299d - Show all commits

View File

@ -1,4 +1,6 @@
export function maxValue(values) { export function maxValue(values) {
// implementar logica aqui if (values.length == 0) return 0;
return Math.max(...values);
// implementar logica aqui
} }