1
0
forked from tdwojak/Python2017

task11 fixed

This commit is contained in:
s45147 2017-12-16 20:27:32 +01:00
parent 6f36635a56
commit 6bce9cdb6a

View File

@ -11,13 +11,10 @@ Oba napisy będą składać się wyłacznie z małych liter.
def common_chars(string1, string2):
wspolne = []
for z1 in string1:
for z2 in string2:
if z1 == z2:
wspolne.append(z1)
return wspolne.sort()
for z in string1.replace(" ", ""):
if z in string2.replace(" ", "") and z not in wspolne:
wspolne.append(z)
return sorted(wspolne)
def tests(f):
inputs = [["this is a string", "ala ma kota"]]