The Wayback Machine - https://web.archive.org/web/20201103191619/https://github.com/TheAlgorithms/Java/issues/1720
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Union Operation with Hashing #1720

Open
jindalsachin opened this issue Oct 10, 2020 · 1 comment
Open

Union Operation with Hashing #1720

jindalsachin opened this issue Oct 10, 2020 · 1 comment

Comments

@jindalsachin
Copy link

@jindalsachin jindalsachin commented Oct 10, 2020

Suppose we are given two arrays and we have find heir mathematical union operation .This can be done easily with the use of HashMap/Hashing in Java.
Eg

arr1=[2,3,4,5,6,8,9 ]
arr2=[1,3,5,10]

Union will be [1,2,3,4,5,6,8,9,10]

@jindalsachin
Copy link
Author

@jindalsachin jindalsachin commented Oct 10, 2020

Please assign me this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
1 participant
You can’t perform that action at this time.