Compare commits

1 Commits

Author SHA1 Message Date
edfc6bda5e Add utils.py with reverse_string function
Closes #5

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-09 18:42:55 +00:00

2
utils.py Normal file
View File

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