2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: a26cbbe9ad8655a977e1ceb5
|
|
|
|
challengeType: 5
|
|
|
|
videoUrl: ''
|
2020-10-01 17:54:21 +02:00
|
|
|
title: 找到字符串中最长的单词
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
2020-06-30 01:51:26 -07:00
|
|
|
<section id="description">返回所提供句子中最长单词的长度。您的回答应该是一个数字。如果卡住,请记得使用<a href="https://forum.freecodecamp.org/t/how-to-get-help-when-you-are-stuck-coding/19514" target="_blank">Read-Search-Ask</a> 。编写自己的代码。 </section>
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
## Instructions
|
|
|
|
<section id="instructions">
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
|
|
|
tests:
|
|
|
|
- text: <code>findLongestWordLength("The quick brown fox jumped over the lazy dog")</code>应该返回一个数字。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(typeof findLongestWordLength("The quick brown fox jumped over the lazy dog") === "number");
|
2018-10-10 18:03:03 -04:00
|
|
|
- text: <code>findLongestWordLength("The quick brown fox jumped over the lazy dog")</code>应该返回6。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(findLongestWordLength("The quick brown fox jumped over the lazy dog") === 6);
|
2018-10-10 18:03:03 -04:00
|
|
|
- text: <code>findLongestWordLength("May the force be with you")</code>应该返回5。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(findLongestWordLength("May the force be with you") === 5);
|
2018-10-10 18:03:03 -04:00
|
|
|
- text: <code>findLongestWordLength("Google do a barrel roll")</code>应返回6。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(findLongestWordLength("Google do a barrel roll") === 6);
|
2018-10-10 18:03:03 -04:00
|
|
|
- text: <code>findLongestWordLength("What is the average airspeed velocity of an unladen swallow")</code>应该返回8。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(findLongestWordLength("What is the average airspeed velocity of an unladen swallow") === 8);
|
2018-10-10 18:03:03 -04:00
|
|
|
- text: <code>findLongestWordLength("What if we try a super-long word such as otorhinolaryngology")</code>应该返回19。
|
2020-02-18 01:40:55 +09:00
|
|
|
testString: assert(findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") === 19);
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
function findLongestWordLength(str) {
|
|
|
|
return str.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
findLongestWordLength("The quick brown fox jumped over the lazy dog");
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
// solution required
|
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
|
|
|
/section>
|