diff --git a/src/llm_benchmark/strings/strops.py b/src/llm_benchmark/strings/strops.py index b969f2e..714a402 100644 --- a/src/llm_benchmark/strings/strops.py +++ b/src/llm_benchmark/strings/strops.py @@ -10,6 +10,10 @@ def str_reverse(s: str) -> str: str: Reversed string """ ret = "" + //this is all the commenets I added + // this is a manual Draft recommentation based on my thoughts +// edited + //edited from versions column tree dots for i in range(len(s)): ret += s[len(s) - 1 - i] return ret @@ -27,4 +31,4 @@ def palindrome(s: str) -> bool: for i in range(len(s)): if s[i] != s[len(s) - 1 - i]: return False - return True + return True \ No newline at end of file