코딩테스트/프로그래머스

[프로그래머스] 문자 리스트를 문자열로 변환하기

둉영 2023. 8. 27. 00:47
def solution(arr):
    answer = ''
    for i in range(len(arr)):
        answer += arr[i]
    return answer
def solution(arr):
    return ''.join(arr)