findLongestWordLength("The quick brown fox jumped over the lazy dog")
应该返回一个数字。
testString: assert(typeof findLongestWordLength("The quick brown fox jumped over the lazy dog") === "number");
- text: findLongestWordLength("The quick brown fox jumped over the lazy dog")
应该返回6。
testString: assert(findLongestWordLength("The quick brown fox jumped over the lazy dog") === 6);
- text: findLongestWordLength("May the force be with you")
应该返回5。
testString: assert(findLongestWordLength("May the force be with you") === 5);
- text: findLongestWordLength("Google do a barrel roll")
应返回6。
testString: assert(findLongestWordLength("Google do a barrel roll") === 6);
- text: findLongestWordLength("What is the average airspeed velocity of an unladen swallow")
应该返回8。
testString: assert(findLongestWordLength("What is the average airspeed velocity of an unladen swallow") === 8);
- text: findLongestWordLength("What if we try a super-long word such as otorhinolaryngology")
应该返回19。
testString: assert(findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") === 19);
```