X1261: List Remove I-E-C

You may be familar with the phrase "'i' before 'e' except after 'c'". It is meant to act as a rule to aid in english spelling, but is often incorrect in many cases!

You are given a list of words. Some words obey the rule, some will not. Return a list of those words which do NOT obey the I-E-C rule. The order of words should be the same as the input.

Examples:

listRemoveIEC(['receive', 'height']) -> ['height']

Your Answer:

Feedback

Your feedback will appear here when you check your answer.