79815051

Date: 2025-11-09 22:09:21
Score: 0.5
Natty:
Report link

*pseudo code

If both positive:

ABS(a-b) or MAX(a,b) - MIN(a,b)

If both negative:

ABS(ABS(a) - ABS(b)) or MAX(a,b) - MIN(a,b)

If one positive and one negative:

MAX(a,b) - MIN(a,b)

Hence for all situations:

MAX(a,b) - MIN(a,b)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Thatislove