Change the content of a string
This docstring is a complete lie. Fix it.
Start file
def add(a, b):
""" Subtracts "x" from "y" """
return a + b
End file
def add(a, b):
""" Adds "a" to "b" """
return a + b
View Diff
2c2
< """ Subtracts "x" from "y" """
---
> """ Adds "a" to "b" """
Solutions by @zakiazigazi:
Unlock 2 remaining solutions by signing in and submitting your own entry