Oliver Eyton-Williams ee1e8abd87
feat(curriculum): restore seed + solution to Chinese (#40683)
* feat(tools): add seed/solution restore script

* chore(curriculum): remove empty sections' markers

* chore(curriculum): add seed + solution to Chinese

* chore: remove old formatter

* fix: update getChallenges

parse translated challenges separately, without reference to the source

* chore(curriculum): add dashedName to English

* chore(curriculum): add dashedName to Chinese

* refactor: remove unused challenge property 'name'

* fix: relax dashedName requirement

* fix: stray tag

Remove stray `pre` tag from challenge file.

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2021-01-12 19:31:00 -07:00

1.8 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
a26cbbe9ad8655a977e1ceb5 Find the Longest Word in a String 5 16015 find-the-longest-word-in-a-string

--description--

Return the length of the longest word in the provided sentence.

Your response should be a number.

--hints--

findLongestWordLength("The quick brown fox jumped over the lazy dog") should return a number.

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

findLongestWordLength("The quick brown fox jumped over the lazy dog") should return 6.

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

findLongestWordLength("May the force be with you") should return 5.

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

findLongestWordLength("Google do a barrel roll") should return 6.

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

findLongestWordLength("What is the average airspeed velocity of an unladen swallow") should return 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") should return 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");