2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
id: a26cbbe9ad8655a977e1ceb5
|
2021-01-12 08:18:51 -08:00
|
|
|
title: 找出字符串中的最长单词
|
2018-10-10 18:03:03 -04:00
|
|
|
challengeType: 5
|
2021-01-12 08:18:51 -08:00
|
|
|
forumTopicId: 16015
|
2018-10-10 18:03:03 -04:00
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --description--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2021-01-12 08:18:51 -08:00
|
|
|
返回给出的句子中,最长单词的长度。
|
|
|
|
|
|
|
|
函数的返回值应是一个数字。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --hints--
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2021-01-12 08:18:51 -08:00
|
|
|
`findLongestWordLength("The quick brown fox jumped over the lazy dog")` 应返回一个数字。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
typeof findLongestWordLength(
|
|
|
|
'The quick brown fox jumped over the lazy dog'
|
|
|
|
) === 'number'
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
2021-01-12 08:18:51 -08:00
|
|
|
`findLongestWordLength("The quick brown fox jumped over the lazy dog")` 应返回 6。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
assert(
|
|
|
|
findLongestWordLength('The quick brown fox jumped over the lazy dog') === 6
|
|
|
|
);
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2021-01-12 08:18:51 -08:00
|
|
|
`findLongestWordLength("May the force be with you")` 应返回 5。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
```js
|
|
|
|
assert(findLongestWordLength('May the force be with you') === 5);
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
|
|
|
|
2021-01-12 08:18:51 -08:00
|
|
|
`findLongestWordLength("Google do a barrel roll")` 应返回 6。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
```js
|
|
|
|
assert(findLongestWordLength('Google do a barrel roll') === 6);
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2021-01-12 08:18:51 -08:00
|
|
|
`findLongestWordLength("What is the average airspeed velocity of an unladen swallow")` 应返回 8。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
findLongestWordLength(
|
|
|
|
'What is the average airspeed velocity of an unladen swallow'
|
|
|
|
) === 8
|
|
|
|
);
|
|
|
|
```
|
2018-10-10 18:03:03 -04:00
|
|
|
|
2021-01-12 08:18:51 -08:00
|
|
|
`findLongestWordLength("What if we try a super-long word such as otorhinolaryngology")` 应返回 19。
|
2018-10-10 18:03:03 -04:00
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
assert(
|
|
|
|
findLongestWordLength(
|
|
|
|
'What if we try a super-long word such as otorhinolaryngology'
|
|
|
|
) === 19
|
|
|
|
);
|
2018-10-10 18:03:03 -04:00
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --solutions--
|
|
|
|
|