2018-10-04 14:37:37 +01:00
|
|
|
---
|
|
|
|
id: a26cbbe9ad8655a977e1ceb5
|
|
|
|
title: Find the Longest Word in a String
|
|
|
|
challengeType: 5
|
2019-07-31 11:32:23 -07:00
|
|
|
forumTopicId: 16015
|
2018-10-04 14:37:37 +01:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
|
|
|
|
2018-10-04 14:37:37 +01:00
|
|
|
Return the length of the longest word in the provided sentence.
|
2020-11-27 19:02:05 +01:00
|
|
|
|
2018-10-04 14:37:37 +01:00
|
|
|
Your response should be a number.
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --hints--
|
|
|
|
|
|
|
|
`findLongestWordLength("The quick brown fox jumped over the lazy dog")` should return a number.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
typeof findLongestWordLength(
|
|
|
|
'The quick brown fox jumped over the lazy dog'
|
|
|
|
) === 'number'
|
|
|
|
);
|
2018-10-04 14:37:37 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`findLongestWordLength("The quick brown fox jumped over the lazy dog")` should return 6.
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
findLongestWordLength('The quick brown fox jumped over the lazy dog') === 6
|
|
|
|
);
|
|
|
|
```
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`findLongestWordLength("May the force be with you")` should return 5.
|
2018-10-04 14:37:37 +01:00
|
|
|
|
|
|
|
```js
|
2020-11-27 19:02:05 +01:00
|
|
|
assert(findLongestWordLength('May the force be with you') === 5);
|
|
|
|
```
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`findLongestWordLength("Google do a barrel roll")` should return 6.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(findLongestWordLength('Google do a barrel roll') === 6);
|
2018-10-04 14:37:37 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`findLongestWordLength("What is the average airspeed velocity of an unladen swallow")` should return 8.
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
findLongestWordLength(
|
|
|
|
'What is the average airspeed velocity of an unladen swallow'
|
|
|
|
) === 8
|
|
|
|
);
|
|
|
|
```
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`findLongestWordLength("What if we try a super-long word such as otorhinolaryngology")` should return 19.
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
findLongestWordLength(
|
|
|
|
'What if we try a super-long word such as otorhinolaryngology'
|
|
|
|
) === 19
|
|
|
|
);
|
|
|
|
```
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --seed--
|
2018-10-04 14:37:37 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
## --seed-contents--
|
2018-10-04 14:37:37 +01:00
|
|
|
|
|
|
|
```js
|
|
|
|
function findLongestWordLength(str) {
|
2020-11-27 19:02:05 +01:00
|
|
|
return str.length;
|
2018-10-04 14:37:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
findLongestWordLength("The quick brown fox jumped over the lazy dog");
|
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --solutions--
|
|
|
|
|
|
|
|
```js
|
|
|
|
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");
|
|
|
|
```
|