Kebab file names

This commit is contained in:
Angelos Chalaris
2023-04-27 21:58:35 +03:00
parent 1d189c709a
commit 61200d90c4
440 changed files with 0 additions and 0 deletions

24
snippets/is-disjoint.md Normal file
View File

@ -0,0 +1,24 @@
---
title: Disjointed iterables
tags: array
cover: interior-9
firstSeen: 2020-10-11T11:53:01+03:00
lastUpdated: 2020-10-11T11:53:01+03:00
---
Checks if the two iterables are disjointed (have no common values).
- Use the `Set` constructor to create a new `Set` object from each iterable.
- Use `Array.prototype.every()` and `Set.prototype.has()` to check that the two iterables have no common values.
```js
const isDisjoint = (a, b) => {
const sA = new Set(a), sB = new Set(b);
return [...sA].every(v => !sB.has(v));
};
```
```js
isDisjoint(new Set([1, 2]), new Set([3, 4])); // true
isDisjoint(new Set([1, 2]), new Set([1, 3])); // false
```