Question: 
Write a python function to remove all digits from a list of strings.


Model's Code:
def remove(strings):
    return [''.join(filter(lambda x: not x.isdigit(), s)) for s in strings]



Sample Correct Code:
import re  
def remove(list): 
    pattern = '[0-9]'
    list = [re.sub(pattern, '', i) for i in list] 
    return list


Asserts:
assert remove(['4words', '3letters', '4digits']) == ['words', 'letters', 'digits']
assert remove(['28Jan','12Jan','11Jan']) == ['Jan','Jan','Jan']
assert remove(['wonder1','wonder2','wonder3']) == ['wonder','wonder','wonder']


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 27 of 974: 21/27 (77.77777777777779%): success