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

Find the Difference of Two Arrays #88

Closed
Tracked by #101
fkdl0048 opened this issue Oct 13, 2024 · 0 comments
Closed
Tracked by #101

Find the Difference of Two Arrays #88

fkdl0048 opened this issue Oct 13, 2024 · 0 comments
Assignees
Labels
Milestone

Comments

@fkdl0048
Copy link
Owner

fkdl0048 commented Oct 13, 2024

class Solution {
public:
    vector<vector<int>> findDifference(vector<int>& nums1, vector<int>& nums2) {
        unordered_set<int> set1(nums1.begin(), nums1.end());
        unordered_set<int> set2(nums2.begin(), nums2.end());

        vector<int> onlyInNums1, onlyInNums2;

        for (int num : set1) {
            if (set2.find(num) == set2.end()) {
                onlyInNums1.push_back(num);
            }
        }

        for (int num : set2) {
            if (set1.find(num) == set1.end()) {
                onlyInNums2.push_back(num);
            }
        }

        return {onlyInNums1, onlyInNums2};
    }
};
  • 중복 제거 -> 해쉬로 이어지게..
@fkdl0048 fkdl0048 mentioned this issue Oct 13, 2024
7 tasks
@fkdl0048 fkdl0048 self-assigned this Oct 13, 2024
@fkdl0048 fkdl0048 added this to Todo Oct 13, 2024
@github-project-automation github-project-automation bot moved this to Todo in Todo Oct 13, 2024
@fkdl0048 fkdl0048 added this to the LeetCode milestone Oct 13, 2024
@github-project-automation github-project-automation bot moved this from Todo to Done in Todo Oct 14, 2024
@fkdl0048 fkdl0048 mentioned this issue Oct 15, 2024
75 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Done
Development

No branches or pull requests

1 participant