Skip to content
This repository was archived by the owner on May 29, 2024. It is now read-only.
This repository was archived by the owner on May 29, 2024. It is now read-only.

merging two sorted arrays in C++ in special manners #1272

Description

@hamzamehmood67

You're given two sorted arrays. You have to merge them in this manner that if there are some same elements in both of them the third merging array should have less number of same elements. For example:
Arr1= 1 5 5 5 6 6 7 7
Arr2= 2 5 5 6

output= 1 2 5 5 6 7 7
There are two 5's because in one array there are three 5's and in second array there are two 5's. So we should always take less number.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions