https://git.wmi.amu.edu.pl/tdwojak/Python2017/src/master/labs03 #1

Open
s45158 wants to merge 17 commits from s45158/Python2017:master into master
Showing only changes of commit cc6da701e2 - Show all commits

View File

@ -9,7 +9,13 @@ Oba napisy będą składać się wyłacznie z małych liter.
"""
def common_chars(string1, string2):
pass
txt1 = string1.replace(' ','')
txt2 = string2.replace(' ','')
return list(''.join(sorted(set(txt1) & set(txt2))))
def tests(f):