Sanjaykumar-IT/dsa-problems

Find the union of arrays in sorted order

Open

#21 opened on Oct 29, 2024

 (0 comments) (0 reactions) (0 assignees)Java (4 forks)auto 404
hacktoberfesthacktoberfest-acceptedhactoberfest2024

Repository metrics

Stars
 (1 star)
PR merge metrics
 (PR metrics pending)

Description

Input: a = [1, 1, 2, 2, 2, 4], b = [2, 2, 4, 4] ( Both a and b are sorted arrays)

Output: [1,2,4]

Contributor guide