Add utils.py with reverse_string function

Closes #5

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-09 18:42:55 +00:00
parent e13f605cfa
commit edfc6bda5e

2
utils.py Normal file
View File

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