let a = toHashSet(["a", "b"]) b = toHashSet(["b", "c"]) c = difference(a, b) assert c == toHashSet(["a"]) Source Edit. proc disjoint[A](s1, s2: HashSet[A]): ...
確定! 回上一頁