에러 내용이 Output size differs라고 나오는데 어떤내용인지 모르겠습니다
1 2 3 4 5 6 7 8 9 10 11 def solution(str1, str2): answer="" str1, str2 = input().strip().split(' ') print(str1, str2) List_str=[] List_str.append(str1) List_str.append(str2) print(List_str) answer=''.join(List_str) return answer
1 2 3 4 5 6 7 8 9 10 11
def solution(str1, str2): answer="" str1, str2 = input().strip().split(' ') print(str1, str2) List_str=[] List_str.append(str1) List_str.append(str2) print(List_str) answer=''.join(List_str) return answer
반환하는 문제가 아니라 출력하는 문제입니다.