freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/rosetta-code/i-before-e-except-after-c.c...

3.0 KiB
Raw Blame History

title id challengeType videoUrl localeTitle
I before E except after C 5a23c84252665b21eecc7eb0 5 我在E之前除了C之后

Description

短语“我在E之前除了C之后”是一个广为人知的助记符它应该有助于拼写英语单词。使用提供的单词检查短语的两个子句是否合理
  1. “我在E之前没有前面的C”。
  2. “在我之前的C之前是C”。
如果两个子短语都是合理的则原始短语可以说是合理的。编写一个接受单词的函数并检查单词是否遵循此规则。如果该函数遵循规则则该函数应返回true否则返回false。

Instructions

Tests

tests:
  - text: <code>IBeforeExceptC</code>应该是一个函数。
    testString: 'assert(typeof IBeforeExceptC=="function","<code>IBeforeExceptC</code> should be a function.");'
  - text: <code>IBeforeExceptC(&quot;receive&quot;)</code>应该返回一个布尔值。
    testString: 'assert(typeof IBeforeExceptC("receive")=="boolean","<code>IBeforeExceptC("receive")</code> should return a boolean.");'
  - text: <code>IBeforeExceptC(&quot;receive&quot;)</code>应该返回<code>true</code> 。
    testString: 'assert.equal(IBeforeExceptC("receive"),true,"<code>IBeforeExceptC("receive")</code> should return <code>true</code>.");'
  - text: <code>IBeforeExceptC(&quot;science&quot;)</code>应该返回<code>false</code> 。
    testString: 'assert.equal(IBeforeExceptC("science"),false,"<code>IBeforeExceptC("science")</code> should return <code>false</code>.");'
  - text: <code>IBeforeExceptC(&quot;imperceivable&quot;)</code>应该返回<code>true</code> 。
    testString: 'assert.equal(IBeforeExceptC("imperceivable"),true,"<code>IBeforeExceptC("imperceivable")</code> should return <code>true</code>.");'
  - text: <code>IBeforeExceptC(&quot;inconceivable&quot;)</code>应该返回<code>true</code> 。
    testString: 'assert.equal(IBeforeExceptC("inconceivable"),true,"<code>IBeforeExceptC("inconceivable")</code> should return <code>true</code>.");'
  - text: <code>IBeforeExceptC(&quot;insufficient&quot;)</code>应返回<code>false</code> 。
    testString: 'assert.equal(IBeforeExceptC("insufficient"),false,"<code>IBeforeExceptC("insufficient")</code> should return <code>false</code>.");'
  - text: <code>IBeforeExceptC(&quot;omniscient&quot;)</code>应该返回<code>false</code> 。
    testString: 'assert.equal(IBeforeExceptC("omniscient"),false,"<code>IBeforeExceptC("omniscient")</code> should return <code>false</code>.");'

Challenge Seed

function IBeforeExceptC (word) {
  // Good luck!
}

Solution

// solution required