LeetCode: Merge Sorted Array
Problem:
https://leetcode.com/problems/merge-sorted-array/description/
Code:
class Solution:
def merge(self, nums1: List[int], m: int, nums2: List[int], n: int) -> None:
"""
Do not return anything, modify nums1 in-place instead.
...
is-power-of-two.hashnode.dev3 min read