Ad
Code
Diff
  • def multiply_and_add_one(a, b): 
        return ((a*b) + 1)
    
    • def multiply_and_add_one(a, b): return a*b + 1
    • def multiply_and_add_one(a, b):
    • return ((a*b) + 1)
Code
Diff
  • add=lambda x:x + x#look at the test case
         
    • add=lambda x:x #look at the test case
    • add=lambda x:x + x#look at the test case