import { isDisjoint } from "https://deno.land/x/set_operations@v1.2.0/mod.ts";
Check if the setA
has no elements in common with setB
.
Sets are disjoint if and only if there intersection is the empty set.
import { isDisjoint } from "https://deno.land/x/set_operations@v1.2.0/mod.ts";
Check if the setA
has no elements in common with setB
.
Sets are disjoint if and only if there intersection is the empty set.