forked from tdwojak/Python2017
38 lines
901 B
Python
38 lines
901 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
"""
|
|
Napisz funkcję common_chars(string1, string2), która zwraca alfabetycznie
|
|
uporządkowaną listę wspólnych liter z lańcuchów string1 i string2.
|
|
Oba napisy będą składać się wyłacznie z małych liter.
|
|
"""
|
|
|
|
def common_chars(string1, string2):
|
|
sl = []
|
|
for i in string1:
|
|
for j in string2:
|
|
if i==j:
|
|
sl.append(i)
|
|
sly = [x for x in sl if x != ' ']
|
|
sly.sort()
|
|
slz = []
|
|
for z in sly:
|
|
if z not in slz:
|
|
slz.append(z)
|
|
return slz
|
|
|
|
|
|
def tests(f):
|
|
inputs = [["this is a string", "ala ma kota"]]
|
|
outputs = [['a', 't']]
|
|
|
|
for input, output in zip(inputs, outputs):
|
|
if f(*input) != output:
|
|
return "ERROR: {}!={}".format(f(*input), output)
|
|
break
|
|
return "TESTS PASSED"
|
|
|
|
if __name__ == "__main__":
|
|
print(tests(common_chars))
|