1
0
forked from tdwojak/Python2017

Moje rozwiązanie

Signed-off-by: s45167 <krzysztof.spalinski@op.pl>
This commit is contained in:
s45167 2017-11-30 22:55:59 +01:00
parent f5aa1671bb
commit 169b197614

View File

@ -14,7 +14,7 @@ def common_chars(string1, string2):
if (i in sorted(string2)) and i!=" " and i not in cc:
cc.append(i)
return cc
pass
def tests(f):