forked from M3-Academy/challenge-algorithms-v2.0
feat: implementa função das maiores palavras
This commit is contained in:
parent
96de2bd2c3
commit
2fbbf551a0
@ -1,4 +1,16 @@
|
|||||||
export function longestWords(words) {
|
export function longestWords(words) {
|
||||||
// implementar logica aqui
|
// 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