piyushsharma220699 / LeetCode-Problems-Solution-Book

REPOSITORY EXCLUDED FROM HACKTOBERFEST 2021, CHECK THIS : https://github.com/piyushsharma220699/Hacktoberfest-2021/issues/261
https://hacktoberfest.digitalocean.com/
MIT License
37 stars 98 forks source link

4. Median of Two Sorted Arrays [Leetcode - Hard] #158

Closed pshivesh8 closed 2 years ago

pshivesh8 commented 2 years ago

Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.

The overall run time complexity should be O(log (m+n)).

Example:

Input: nums1 = [1,3], nums2 = [2] Output: 2.00000 Explanation: merged array = [1,2,3] and median is 2.

Link: https://leetcode.com/problems/median-of-two-sorted-arrays/

pshivesh8 commented 2 years ago

I want to solve this in C++, Please assign this issue to me as a part of hacktoberfest-2021

piyushsharma220699 commented 2 years ago

Sorry, this issue is already assigned to someone else here :: https://github.com/piyushsharma220699/Hacktoberfest-2021/issues/93 I'm closing this 👍🏻