Input
tickets = [
{"id": "t1", "title": "Login broken", "category": "auth", "user_id": "u1", "body": "Cannot log in."},
{"id": "t2", "title": "App crashes", "category": "app", "user_id": "u2", "body": "Crashes on launch."},
{"id": "t3", "title": "Login broken", "category": "billing", "user_id": "u3", "body": "Cannot log in."},
]Output
[["t1", "t3"]]
t1 and t3 share the same normalized title and body. t2 is unique — it forms no group.