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

[Feature]: xor #438

Closed
1 of 2 tasks
ssi02014 opened this issue Sep 1, 2024 · 2 comments
Closed
1 of 2 tasks

[Feature]: xor #438

ssi02014 opened this issue Sep 1, 2024 · 2 comments
Assignees
Labels
feature 새로운 기능 추가 @modern-kit/utils @modern-kit/utils

Comments

@ssi02014
Copy link
Contributor

ssi02014 commented Sep 1, 2024

Package Scope

  • 기존 패키지에 기능 추가
  • 새로운 패키지
  • Package name: @modern-kit/utils/array

Overview

사용자 지정 매핑 함수를 사용하여 두 배열 간의 대칭 차이(xor)를 계산합니다.
대칭 차이는 두 배열 중 하나에 있는 요소의 집합입니다. 필요 시 3번째 인자인 iteratee 함수 결과로 대칭 차이 요소임을 판단 할 수 있습니다.

xor([1, 2], [2, 3]);
// [1, 3]

xor([{ id: 1 }, { id: 2 }], [{ id: 2 }, { id: 3 }], (x) => x.id);
// [{ id: 1 },  id: 3 }]
@ssi02014 ssi02014 added feature 새로운 기능 추가 @modern-kit/utils @modern-kit/utils labels Sep 1, 2024
@Gaic4o
Copy link
Contributor

Gaic4o commented Sep 23, 2024

제가 구현 해 봐도 괜찮을까요~?

@ssi02014
Copy link
Contributor Author

@Gaic4o 좋아요 :) !!감사합니다

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 새로운 기능 추가 @modern-kit/utils @modern-kit/utils
Projects
None yet
Development

No branches or pull requests

3 participants