1
0
forked from tdwojak/Python2018
Python2018/labs02/task11.py
Ola Piechowiak 9e147f83d2 zad 11 ready
2018-05-31 22:32:16 +02:00

35 lines
902 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):
string1 = set(string1.replace(" ", ""))
string2 = set(string2.replace(" ", ""))
common = []
for a1 in string1:
for a2 in string2:
if a1 == a2:
common.append(a1)
common.sort()
return common
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))