This commit is contained in:
Ian Gulliver
2019-07-13 05:10:56 +00:00
parent cbe56098da
commit a3cc7ad048
3 changed files with 2 additions and 14 deletions

View File

@@ -7,15 +7,6 @@ function getOrSet(container, key, newValue) {
return val;
}
function intersects(set1, set2) {
for (let item of set1) {
if (set2.has(item)) {
return true;
}
}
return false;
}
function asymDifference(set1, set2) {
let ret = new Set();
for (let item of set1) {