freeCodeCamp/curriculum/challenges/italian/02-javascript-algorithms-an.../basic-algorithm-scripting/find-the-longest-word-in-a-...

1.9 KiB

id title challengeType forumTopicId dashedName
a26cbbe9ad8655a977e1ceb5 Trovare la parola più lunga in una stringa 1 16015 find-the-longest-word-in-a-string

--description--

Restituisci la lunghezza della parola più lunga nella frase fornita.

Il tuo risultato dovrebbe essere un numero.

--hints--

findLongestWordLength("The quick brown fox jumped over the lazy dog") dovrebbe restituire un numero.

assert(
  typeof findLongestWordLength(
    'The quick brown fox jumped over the lazy dog'
  ) === 'number'
);

findLongestWordLength("The quick brown fox jumped over the lazy dog") dovrebbe restituire 6.

assert(
  findLongestWordLength('The quick brown fox jumped over the lazy dog') === 6
);

findLongestWordLength("May the force be with you") dovrebbe restituire 5.

assert(findLongestWordLength('May the force be with you') === 5);

findLongestWordLength("Google do a barrel roll") dovrebbe restituire 6.

assert(findLongestWordLength('Google do a barrel roll') === 6);

findLongestWordLength("What is the average airspeed velocity of an unladen swallow") dovrebbe restituire 8.

assert(
  findLongestWordLength(
    'What is the average airspeed velocity of an unladen swallow'
  ) === 8
);

findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") dovrebbe restituire 19.

assert(
  findLongestWordLength(
    'What if we try a super-long word such as otorhinolaryngology'
  ) === 19
);

--seed--

--seed-contents--

function findLongestWordLength(str) {
  return str.length;
}

findLongestWordLength("The quick brown fox jumped over the lazy dog");

--solutions--

function findLongestWordLength(str) {
  return str.split(' ').sort((a, b) => b.length - a.length)[0].length;
}

findLongestWordLength("The quick brown fox jumped over the lazy dog");