코딩테스트/leetcode

1768. Merge Strings Alternately [python]

1son 2023. 9. 10. 22:32

문제 : 

 

해답 : 

class Solution:
    def mergeAlternately(self, word1: str, word2: str) -> str:
        length1=len(word1)
        length2=len(word2)
        i=0
        j=0
        res=""
        while i+j<length1+length2:
            if i<length1:
                res+=word1[i]
                i+=1
            if j<length2:
                res+=word2[j]
                j+=1
        return res

'코딩테스트 > leetcode' 카테고리의 다른 글

1071. Greatest Common Divisor of Strings [python]  (0) 2023.09.11
1. Two Sum [python]  (0) 2023.09.10