(a, b)
| 973 | # a & b => elements that appear in a as well as in b. |
| 974 | # a - b => elements that appear in a but not in b. |
| 975 | def union(a, b): |
| 976 | return list(set(a) | set(b)) |
| 977 | def intersection(a, b): |
| 978 | return list(set(a) & set(b)) |
| 979 | def difference(a, b): |
no outgoing calls
no test coverage detected
searching dependent graphs…