List Compare

List intersection / difference / union

List A (listACount items)
List B (0 items)

Usage Guide

Compare Operations

  • Intersection (A∩B) — Items present in both lists
  • Union (A∪B) — All unique items from both lists
  • Difference A-B — Items in A but not in B
  • Difference B-A — Items in B but not in A
  • Symmetric Diff — Items in A or B but not both

Use Cases

  • Data cleaning — compare two datasets for differences
  • List dedup & merge — merge lists and remove duplicates
  • Config comparison — diff two configuration lists
  • Keyword analysis — find intersection and differences between keyword lists

常见问题

相关工具