Day 29 (30 Days of Code)
1 August 2023
Solved my first hard question on Leetcode and one question on dynamic programming.
Median of Two Sorted Arrays
My approach:
I solved it by merging two sorted arrays into one single sorted array.
My solution:
class Solution {
public:
...
nirbhaycodes.hashnode.dev2 min read