Login and get codingGiven two sentences that each contains words in case insensitive way, you have to check the common case insensitive words appearing in both sentences.
If there are duplicate words in the results, just choose one. The results should be sorted by words length.
The sentences are presented as list of words. Example:
S = ['You', 'can', 'do', 'anything', 'but', 'not', 'everything'] ## ** ** T = ['We', 'are', 'what', 'we', 'repeatedly', 'do', 'is', 'not', 'an', 'act'] ## ** ** Result = ['do', 'not']
179 out of 179 users completed this Bite.
Will you be the 180th person to crack this Bite?
Resolution time: ~25 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 2.14 on a 1-10 difficulty scale.
» You can do it! 😌