Merge Strings Alternately - Leetcode 1768 - Python

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 พ.ย. 2024

ความคิดเห็น • 4

  • @techerror8
    @techerror8  ปีที่แล้ว +1

    Like 👍
    Share 📣
    Comment 💬
    Click this link to Subscribe 👉tinyurl.com/4e2nj4vr
    Press the Bell icon🔔for updates

  • @kingofuniverse47
    @kingofuniverse47 ปีที่แล้ว +1

    Time Limit exceede in leet code

    • @techerror8
      @techerror8  ปีที่แล้ว +1

      Can u check once, it is working for me. Happy to Help :)

  • @VishnuvardhanJadava
    @VishnuvardhanJadava 8 หลายเดือนก่อน +1

    class Solution:
    def mergeAlternately(self, word1: str, word2: str) -> str:
    li=[]
    for i in range(max(len(word1),len(word2))):
    if i