Files
app-store-optimization/skills/loki-mode/benchmarks/results/humaneval-loki-solutions/23.py

13 lines
231 B
Python

# HumanEval/23
# Loki Mode Multi-Agent Solution
# Attempts: 1
# Passed: True
def strlen(string: str) -> int:
""" Return length of given string
>>> strlen('')
0
>>> strlen('abc')
3
"""
return len(string)