“Python LeetCode” Ответ

LeetCode Solutions Python

Python solution for Leetcode
Python solution of problems from LeetCode.

https://github.com/Garvit244/Leetcode
Baggi

LeetCode Python

def merge(self, nums1, m, nums2, n):
        while m > 0 and n > 0:
            if nums1[m-1] >= nums2[n-1]:
                nums1[m+n-1] = nums1[m-1]
                m -= 1
            else:
                nums1[m+n-1] = nums2[n-1]
                n -= 1
        if n > 0:
            nums1[:n] = nums2[:n]
Relieved Ratel

Ответы похожие на “Python LeetCode”

Вопросы похожие на “Python LeetCode”

Больше похожих ответов на “Python LeetCode” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования