Given a list of strings, return a new list where all the strings containing the substring 'code' have been removed.
['coding', 'code', 'program', 'codec']
['coding', 'program']
Bot