79830746

Date: 2025-11-26 13:24:24
Score: 1.5
Natty:
Report link

If you want a clean code.

list1 = [1, 2, 3]
list2 = [2, 3, 4]
list3 = [4, 5]

merged = list(set(list1 + list2 + list3))

print(merged)


// Result -> [1, 2, 3, 4, 5]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DELVIN N J