Add utils.py with reverse_string function #6

Open
admin wants to merge 1 commits from claude/issue-5 into main
Showing only changes of commit edfc6bda5e - Show all commits

2
utils.py Normal file
View File

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