forked from M3-Academy/challenge-algorithms-v2.0
feat(longestWords): Responde função 10
This commit is contained in:
parent
083a8e14a8
commit
ecb4e8b483
@ -2,4 +2,10 @@ import { arrayBuffer } from "stream/consumers";
|
|||||||
|
|
||||||
export function longestWords(words) {
|
export function longestWords(words) {
|
||||||
// implementar logica aqui
|
// implementar logica aqui
|
||||||
|
let maioresPalavras = "";
|
||||||
|
for ( const word of words ) {
|
||||||
|
if ( word.length > maioresPalavras.length ) {
|
||||||
|
maioresPalavras = word; }
|
||||||
|
}
|
||||||
|
return words.filter ( ( word ) => word.length == maioresPalavras.length ) ;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user