Skip to content

Commit

Permalink
Merge Strings/lists alternately
Browse files Browse the repository at this point in the history
  • Loading branch information
absognety committed Jun 23, 2024
1 parent ee7da12 commit d692e29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion LeetCode/MergeAlternately.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# You are given two strings word1 and word2. Merge the strings by adding letters in alternating order, starting with word1. If a string is longer than the other, append the additional letters onto the end of the merged string.
# You are given two strings word1 and word2. Merge the strings by adding letters in alternating order,
# starting with word1. If a string is longer than the other, append the additional letters
# onto the end of the merged string.

# Return the merged string.

Expand Down

0 comments on commit d692e29

Please sign in to comment.