Kristofer Koishigawa b3213fc892 fix(i18n): chinese test suite (#38220)
* fix: Chinese test suite

Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working.

* fix: ran script, updated testStrings and solutions
2020-03-03 18:49:47 +05:30

2.2 KiB

id, title, isRequired, challengeType, videoUrl, localeTitle
id title isRequired challengeType videoUrl localeTitle
a26cbbe9ad8655a977e1ceb5 Find the Longest Word in a String true 5 找到字符串中最长的单词

Description

返回所提供句子中最长单词的长度。您的回答应该是一个数字。如果卡住,请记得使用Read-Search-Ask 。编写自己的代码。

Instructions

Tests

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