Median of Two Arrays #1936

Problem

Leetcode problem description for Median of Two Arrays #1936

View on Leetcode

Approach

Use efficient algorithm and data structures.

Time: O(n), Space: O(1)

Code

def solve():
    print('Solving problem 1936')