Leetcode-Solutions

My Leetcode Solutions.

View on GitHub

1768. Merge Strings Alternately

Topics: Two Pointers String

Solution

Implementation

class Solution {
    fun mergeAlternately(word1: String, word2: String): String {
        var s = ""
        var i = 0

        while (i < word1.length || i < word2.length) {
            if (i < word1.length) s += word1[i]
            if (i < word2.length) s += word2[i]
            i++
        }
        
        return s
    }
}