diff --git a/labs02/task11.py b/labs02/task11.py index 21954b7..37b3c40 100644 --- a/labs02/task11.py +++ b/labs02/task11.py @@ -14,7 +14,7 @@ def common_chars(string1, string2): if (i in sorted(string2)) and i!=" " and i not in cc: cc.append(i) return cc - pass + def tests(f):