Skip to content

Commit c9a443d

Browse files
add 1768-merge-strings-alternately.py
1 parent 788b351 commit c9a443d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution:
2+
def mergeAlternately(self, word1: str, word2: str) -> str:
3+
i = j = 0
4+
res = []
5+
6+
while i < len(word1) and j < len(word2):
7+
res.append(word1[i])
8+
res.append(word2[j])
9+
i += 1
10+
j += 1
11+
res.append(word1[i:])
12+
res.append(word2[j:])
13+
return ''.join(res)
14+

0 commit comments

Comments
 (0)