Add utils.py with reverse_string function #6

Open
admin wants to merge 1 commits from claude/issue-5 into main

2
utils.py Normal file
View File

@@ -0,0 +1,2 @@
def reverse_string(s):
return s[::-1]