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 @h_east:
Unlock 3 remaining solutions by signing in and submitting your own entry