forked from M3-Academy/challenge-algorithms-v2.0
(feat) finalizando o teste 10-longestWords
This commit is contained in:
parent
61b8dc538c
commit
f577fc0a57
@ -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