less than 1 minute read

교집합

a = set()
b = set()
1) set.intersection(a, b)
2) a.intersection(b)

합집합

a = set()
b = set()
1) set.union(a,b)
2) a.union(b)

Categories:

Updated:

Comments