forked from M3-Academy/challenge-algorithms-v2.0
feature #1
@ -1,4 +1,24 @@
|
||||
export function longestWords(words) {
|
||||
// implementar logica aqui
|
||||
|
||||
let letra = words
|
||||
let tamanho = 0
|
||||
let maximo = [' ']
|
||||
|
||||
for (let i = 0; i < letra.length; i++) {
|
||||
if (letra[i].length >= tamanho) {
|
||||
tamanho = letra[i].length
|
||||
if (maximo[maximo.length - 1].length < letra[i].length) {
|
||||
maximo = []
|
||||
maximo.push(letra[i])
|
||||
}
|
||||
else {
|
||||
maximo = [...maximo, letra[i]]
|
||||
}
|
||||
}
|
||||
}
|
||||
return [...maximo]
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user