https://leetcode.com/problems/merge-strings-alternately/?envType=study-plan-v2&envId=leetcode-75class Solution(object): def mergeAlternately(self, word1, word2): """ :type word1: str :type word2: str :rtype: str """ result = "" #1개로 묶기 idx = 0 #end 구하기 if len(word1) 문제 해설 word1, word2 문자들을 교차하는 문제다. 문자열은 문자들의 배열로 이..