feat algoritmo 3

This commit is contained in:
Patrick Reis Santos 2022-10-30 11:01:51 -03:00
parent 7de8a8fc7f
commit 456a54299d

View File

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