forked from M3-Academy/challenge-algorithms-v2.0
feat: implementa função das maiores palavras #10
@ -1,4 +1,16 @@
|
||||
export function longestWords(words) {
|
||||
// implementar logica aqui
|
||||
|
||||
let maior = 0;
|
||||
let maioresPalavras = [];
|
||||
for(let i = 0;i < words.length;i++){
|
||||
if(words[i].length >= maior){
|
||||
maior = words[i].length;
|
||||
}
|
||||
}
|
||||
for(let j = 0;j < words.length;j++){
|
||||
if(words[j].length == maior){
|
||||
maioresPalavras.push(words[j]);
|
||||
}
|
||||
}
|
||||
return maioresPalavras;
|
||||
}
|
Loading…
Reference in New Issue
Block a user