https://git.wmi.amu.edu.pl/tdwojak/Python2017/src/master/labs03 #1
@ -9,7 +9,13 @@ Oba napisy będą składać się wyłacznie z małych liter.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
def common_chars(string1, string2):
|
def common_chars(string1, string2):
|
||||||
pass
|
txt1 = string1.replace(' ','')
|
||||||
|
txt2 = string2.replace(' ','')
|
||||||
|
|
||||||
|
return list(''.join(sorted(set(txt1) & set(txt2))))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def tests(f):
|
def tests(f):
|
||||||
|
Loading…
Reference in New Issue
Block a user