1
0
forked from tdwojak/Python2017
Python2017/labs02/task11.py

34 lines
796 B
Python
Raw Normal View History

2017-11-18 16:45:28 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Napisz funkcję common_chars(string1, string2), która zwraca alfabetycznie
2017-11-19 10:42:39 +01:00
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.
2017-11-18 16:45:28 +01:00
"""
def common_chars(string1, string2):
2017-11-20 10:17:48 +01:00
wspolne = []
2017-11-18 16:45:28 +01:00
2017-11-20 10:17:48 +01:00
for z1 in string1:
for z2 in string2:
if z1 == z2:
wspolne.append(z1)
return wspolne.sort()
2017-11-20 10:19:15 +01:00
2017-11-18 16:45:28 +01:00
def tests(f):
2017-11-19 10:42:39 +01:00
inputs = [["this is a string", "ala ma kota"]]
outputs = [['a', 't']]
2017-11-18 16:45:28 +01:00
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))