forked from tdwojak/Python2018
Zadanie domowe
This commit is contained in:
parent
c4cf32a7f8
commit
02e9da89d2
@ -10,12 +10,12 @@ Oba napisy będą składać się wyłacznie z małych liter.
|
||||
|
||||
def common_chars(string1, string2):
|
||||
lista = []
|
||||
str1 = set(string1)
|
||||
str2 = set(string2)
|
||||
str1 = set(string1.replace(' ', ''))
|
||||
str2 = set(string2.replace(' ', ''))
|
||||
for i in str1:
|
||||
for j in str2:
|
||||
if i == j and i != ' ':
|
||||
lista += i
|
||||
if i == j:
|
||||
lista.append(i)
|
||||
lista.sort()
|
||||
return lista
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user