79417216

Date: 2025-02-06 08:39:42
Score: 1.5
Natty:
Report link
list1 = [1,2,3,4,5]
list2 = [4,5,6,7,8]

uncommon_element = list(set(list1) ^ set(list2))
# Output: [1,2,3,6,7,8]
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Aditya R