development #13

Merged
Rafael_Sampaio_de_Oliveira merged 22 commits from development into master 2022-11-01 16:32:59 +00:00
Showing only changes of commit 5915cbc3db - Show all commits

View File

@ -1,4 +1,5 @@
export function longestWords(words) {
// implementar logica aqui
}
// implementar logica aqui
let maxLength = Math.max(...words.map((e) => e.length));
return words.filter((e) => e.length === maxLength);
}