2.3 KiB
2.3 KiB
id, challengeType, videoUrl, localeTitle
id | challengeType | videoUrl | localeTitle |
---|---|---|---|
5a23c84252665b21eecc7eb0 | 5 | 我在E之前除了C之后 |
Description
- “我在E之前没有前面的C”。
- “在我之前的C之前是C”。
Instructions
Tests
tests:
- text: <code>IBeforeExceptC</code>应该是一个函数。
testString: assert(typeof IBeforeExceptC=='function');
- text: <code>IBeforeExceptC("receive")</code>应该返回一个布尔值。
testString: assert(typeof IBeforeExceptC("receive")=='boolean');
- text: <code>IBeforeExceptC("receive")</code>应该返回<code>true</code> 。
testString: assert.equal(IBeforeExceptC("receive"),true);
- text: <code>IBeforeExceptC("science")</code>应该返回<code>false</code> 。
testString: assert.equal(IBeforeExceptC("science"),false);
- text: <code>IBeforeExceptC("imperceivable")</code>应该返回<code>true</code> 。
testString: assert.equal(IBeforeExceptC("imperceivable"),true);
- text: <code>IBeforeExceptC("inconceivable")</code>应该返回<code>true</code> 。
testString: assert.equal(IBeforeExceptC("inconceivable"),true);
- text: <code>IBeforeExceptC("insufficient")</code>应返回<code>false</code> 。
testString: assert.equal(IBeforeExceptC("insufficient"),false);
- text: <code>IBeforeExceptC("omniscient")</code>应该返回<code>false</code> 。
testString: assert.equal(IBeforeExceptC("omniscient"),false);
Challenge Seed
function IBeforeExceptC (word) {
// Good luck!
}
Solution
// solution required
/section>