10. Union of Two Sorted Arrays with Distinct Elements
Problem Description
Examples:
a[] = [1, 2, 3, 4, 5]
b[] = [1, 2, 3, 6, 7]1 2 3 4 5 6 7a[] = [2, 3, 4, 5]
b[] = [1, 2, 3, 4]1 2 3 4 5My Approach
Time and Auxiliary Space Complexity
Code (C++)
Code (Java)
Code (Python)
Contribution and Support
📍Visitor Count
Last updated