Ad
Code
Diff
  • import operator
    s = lambda a, b: operator.sub(a, b)
    • s = lambda a,b: a.__sub__(b)
    • import operator
    • s = lambda a, b: operator.sub(a, b)
Code
Diff
  • def s(a,b): return a.__sub__(b)
    • def s(a,b): return a-b
    • def s(a,b): return a.__sub__(b)