상세 컨텐츠

본문 제목

[programmers lv.0] 문자 리스트를 문자열로 변환하기

programmers

by sohodor 2023. 7. 24. 16:44

본문

def solution(arr):
    answer = ''.join(arr)
    return answer

관련글 더보기