79477023

Date: 2025-03-01 02:02:25
Score: 1
Natty:
Report link

My solution would be (looking at the logic gates behind it):

function xor(a,b)
    return (a or b) and (not(a and b))
end
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: G. Pendergrass