1
0
forked from tdwojak/Python2017

update test task

Signed-off-by: s45167 <krzysztof.spalinski@op.pl>
This commit is contained in:
s45167 2017-11-30 22:06:02 +01:00
parent 2fbb58c328
commit 84a295a7cd

View File

@ -9,6 +9,11 @@ Oba napisy będą składać się wyłacznie z małych liter.
"""
def common_chars(string1, string2):
cc =[]
for i in sorted(string1):
if (i in sorted(string2)) and i!=" " and i not in cc:
cc.append(i)
return cc
pass