2.1 KiB
2.1 KiB
id, challengeType, videoUrl, localeTitle
id | challengeType | videoUrl | localeTitle |
---|---|---|---|
a26cbbe9ad8655a977e1ceb5 | 5 | 找到字符串中最长的单词 |
Description
Instructions
Tests
tests:
- text: <code>findLongestWordLength("The quick brown fox jumped over the lazy dog")</code>应该返回一个数字。
testString: assert(typeof findLongestWordLength("The quick brown fox jumped over the lazy dog") === "number");
- text: <code>findLongestWordLength("The quick brown fox jumped over the lazy dog")</code>应该返回6。
testString: assert(findLongestWordLength("The quick brown fox jumped over the lazy dog") === 6);
- text: <code>findLongestWordLength("May the force be with you")</code>应该返回5。
testString: assert(findLongestWordLength("May the force be with you") === 5);
- text: <code>findLongestWordLength("Google do a barrel roll")</code>应返回6。
testString: assert(findLongestWordLength("Google do a barrel roll") === 6);
- text: <code>findLongestWordLength("What is the average airspeed velocity of an unladen swallow")</code>应该返回8。
testString: assert(findLongestWordLength("What is the average airspeed velocity of an unladen swallow") === 8);
- text: <code>findLongestWordLength("What if we try a super-long word such as otorhinolaryngology")</code>应该返回19。
testString: assert(findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") === 19);
Challenge Seed
function findLongestWordLength(str) {
return str.length;
}
findLongestWordLength("The quick brown fox jumped over the lazy dog");
Solution
// solution required
/section>