• + 0 comments
    # Two Strings
    def two_strings(s1, s2):
        return 'YES' if set(s1) & set(s2) else 'NO'