• publishing BUG

 

Hi,

I think i found a bug with publishing the code

From: http://www.checkio.org/mission/house-password/solve/ I tried publishing this code:

checkio= lambda x: all([re.search(p, x) for p in ['.{10}', '\d', '[A-Z]', '[a-z]']])

On publishing it shows: checkio= lambda x: all([re.search(p, x) for p in ['.', '\d', '[A-Z]', '[a-z]']])

4