Skip to content

Commit b902708

Browse files
committed
fix code error and rename file to align with tutorial
1 parent 72baaaf commit b902708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ def undo_spell(spell):
99
>>> undo_spell("Lumos")
1010
"somuL"
1111
"""
12-
return spell[::1]
12+
return spell[::-1]

0 commit comments

Comments
 (0)