1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-20 01:56:57 +02:00
LeetCode/cs/merge-strings-alternately.cs
Matej Focko 641aa6c529
cs: add “1768. Merge Strings Alternately”
Signed-off-by: Matej Focko <mfocko@redhat.com>
2024-01-06 22:04:18 +01:00

20 lines
509 B
C#

public class Solution {
public string MergeAlternately(string word1, string word2) {
var sb = new StringBuilder();
int i, j;
for (i = 0, j = 0; i < word1.Length && j < word2.Length; ++i, ++j) {
sb.Append(word1[i]);
sb.Append(word2[j]);
}
if (i < word1.Length) {
sb.Append(word1.Substring(i));
}
if (j < word2.Length) {
sb.Append(word2.Substring(j));
}
return sb.ToString();
}
}