1
0
forked from tdwojak/Python2017
This commit is contained in:
s45152 2017-12-02 10:00:04 +01:00
parent b6a0c7978c
commit fde31ec283

View File

@ -9,7 +9,10 @@ Oba napisy będą składać się wyłacznie z małych liter.
""" """
def common_chars(string1, string2): def common_chars(string1, string2):
pass strg1 = list(string1)
strg2 = list(string2)
sum = strg1 + strg2
print(sorted(sum))
def tests(f): def tests(f):