Design Architecture for Utility Functions (iss-1ac610bafd4c)
Some checks failed
ci / test (push) Has been cancelled

This commit is contained in:
forge-bot 2026-07-09 01:02:12 +00:00
parent 0f4e91734a
commit 43f1a45982

10
utils/string_utils.py Normal file
View file

@ -0,0 +1,10 @@
def capitalize_first_letter(s):
"""Capitalizes the first letter of a string."""
if not s:
return s
return s[0].upper() + s[1:]
def reverse_string(s):
"""Reverses the given string."""
return s[::-1]