Files
freeCodeCamp/curriculum/challenges/german/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/find-the-longest-word-in-a-string.md
2022-08-19 20:53:29 +02:00

1.9 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
a26cbbe9ad8655a977e1ceb5 Finde das längste Wort in einem String 1 16015 find-the-longest-word-in-a-string

--description--

Gib die Länge des längsten Wortes im angegebenen Satz zurück.

Deine Antwort sollte eine Zahl sein.

--hints--

findLongestWordLength("The quick brown fox jumped over the lazy dog") sollte eine Zahl zurückgeben.

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

findLongestWordLength("The quick brown fox jumped over the lazy dog") sollte 6 zurückgeben.

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

findLongestWordLength("May the force be with you") sollte 5 zurückgeben.

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

findLongestWordLength("Google do a barrel roll") sollte 6 zurückgeben.

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

findLongestWordLength("What is the average airspeed velocity of an unladen swallow") sollte 8 zurückgeben.

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") sollte 19 zurückgeben.

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");