--- id: a3f503de51cf954ede28891d title: Find the Symmetric Difference challengeType: 5 forumTopicId: 301611 localeTitle: Найти симметричную разницу --- ## Description
Создайте функцию, которая принимает два или более массива и возвращает массив симметричной разности ( или ) предоставленных массивов. Для двух множеств (например, для множества A = {1, 2, 3} и множества B = {2, 3, 4} ) математический термин «симметричная разность» двух множеств представляет собой включающее все элементы исходных множеств, не принадлежащие одновременно обоим исходным множествам ( A △ B = C = {1, 4} ). Для каждой дополнительной симметричной разности, которую вы принимаете (допустим, множество D = {2, 3} ), вы должны получить набор с элементами, которые находятся в любом из двух наборов, но не в обоих одновременно ( C △ D = {1, 4} △ {2, 3} = {1, 2, 3, 4} ). Результирующий массив должен содержать только уникальные значения ( без дубликатов ). Не забудьте использовать Read-Search-Ask, если вы застряли. Попробуйте парное программирование. Напишите свой собственный код.
## Instructions
## Tests
```yml tests: - text: sym([1, 2, 3], [5, 2, 1, 4]) should return [3, 4, 5]. testString: assert.sameMembers(sym([1, 2, 3], [5, 2, 1, 4]), [3, 4, 5]); - text: sym([1, 2, 3], [5, 2, 1, 4]) should contain only three elements. testString: assert.equal(sym([1, 2, 3], [5, 2, 1, 4]).length, 3); - text: sym([1, 2, 3, 3], [5, 2, 1, 4]) should return [3, 4, 5]. testString: assert.sameMembers(sym([1, 2, 3, 3], [5, 2, 1, 4]), [3, 4, 5]); - text: sym([1, 2, 3, 3], [5, 2, 1, 4]) should contain only three elements. testString: assert.equal(sym([1, 2, 3, 3], [5, 2, 1, 4]).length, 3); - text: sym([1, 2, 3], [5, 2, 1, 4, 5]) should return [3, 4, 5]. testString: assert.sameMembers(sym([1, 2, 3], [5, 2, 1, 4, 5]), [3, 4, 5]); - text: sym([1, 2, 3], [5, 2, 1, 4, 5]) should contain only three elements. testString: assert.equal(sym([1, 2, 3], [5, 2, 1, 4, 5]).length, 3); - text: sym([1, 2, 5], [2, 3, 5], [3, 4, 5]) should return [1, 4, 5] testString: assert.sameMembers(sym([1, 2, 5], [2, 3, 5], [3, 4, 5]), [1, 4, 5]); - text: sym([1, 2, 5], [2, 3, 5], [3, 4, 5]) should contain only three elements. testString: assert.equal(sym([1, 2, 5], [2, 3, 5], [3, 4, 5]).length, 3); - text: sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5]) should return [1, 4, 5]. testString: assert.sameMembers(sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5]), [1, 4, 5]); - text: sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5]) should contain only three elements. testString: assert.equal(sym([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5]).length, 3); - text: sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6], [1, 2, 3]) should return [2, 3, 4, 6, 7]. testString: assert.sameMembers(sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6], [1, 2, 3]), [2, 3, 4, 6, 7]); - text: sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6], [1, 2, 3]) should contain only five elements. testString: assert.equal(sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6], [1, 2, 3]).length, 5); - text: sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6], [1, 2, 3], [5, 3, 9, 8], [1]) should return [1, 2, 4, 5, 6, 7, 8, 9]. testString: assert.sameMembers(sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6], [1, 2, 3], [5, 3, 9, 8], [1]), [1, 2, 4, 5, 6, 7, 8, 9]); - text: sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6], [1, 2, 3], [5, 3, 9, 8], [1]) should contain only eight elements. testString: assert.equal(sym([3, 3, 3, 2, 5], [2, 1, 5, 7], [3, 4, 6, 6], [1, 2, 3], [5, 3, 9, 8], [1]).length, 8); ```
## Challenge Seed
```js function sym(args) { return args; } sym([1, 2, 3], [5, 2, 1, 4]); ```
## Solution
```js function sym() { var arrays = [].slice.call(arguments); return arrays.reduce(function (symDiff, arr) { return symDiff.concat(arr).filter(function (val, idx, theArr) { return theArr.indexOf(val) === idx && (symDiff.indexOf(val) === -1 || arr.indexOf(val) === -1); }); }); } sym([1, 2, 3], [5, 2, 1, 4]); ```