forked from M3-Academy/challenge-algorithms-v2.0
feat(longestWords): Implementacao da funcao longestWords()
This commit is contained in:
parent
8300a31ec7
commit
56904fc642
@ -1,4 +1,19 @@
|
|||||||
export function longestWords(words) {
|
export function longestWords(words) {
|
||||||
// implementar logica aqui
|
let maiorPalavra = 0;
|
||||||
|
let maiores = [];
|
||||||
|
|
||||||
|
for (let i = 0; i < words.length; i++){
|
||||||
|
if(words[i].length > maiorPalavra){
|
||||||
|
maiorPalavra = words[i].length
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let i = 0; i < words.length; i++){
|
||||||
|
if(words[i].length === maiorPalavra){
|
||||||
|
maiores.push(words[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return maiores;
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user