develop #11

Merged
HenriqueSantosSantana merged 20 commits from develop into master 2022-10-28 01:03:41 +00:00
Showing only changes of commit 224e3f86cc - Show all commits

View File

@ -1,4 +1,21 @@
export function longestWords(words) {
// implementar logica aqui
}
// implementar logica aqui
if (words.length === 0 || !words) return 0;
let wordLengthMax = 0;
let wordsList = [];
for (let word of words) {
if (word.length >= wordLengthMax) {
wordLengthMax = word.length;
}
}
for (let word of words) {
if (wordLengthMax === word.length) {
wordsList.push(word);
}
}
return wordsList;
}