1
0
forked from tdwojak/Python2017
Python2017/labs02/task11.py
2017-12-16 20:27:32 +01:00

31 lines
817 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):
wspolne = []
for z in string1.replace(" ", ""):
if z in string2.replace(" ", "") and z not in wspolne:
wspolne.append(z)
return sorted(wspolne)
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))