测试评估
| 指标 | 结果 |
|---|---|
| Base 测试 | PASS |
| Plus 测试 | PASS |
| 代码长度 | 327 字符 |
模型生成的代码 (327 字符)
def len_log(words):
"""
Returns the length of the longest word in a list of strings.
Args:
words (list of str): A list of words.
Returns:
int: The length of the longest word. Returns 0 if the list is empty.
"""
if not words:
return 0
return max(len(word) for word in words)
Base 失败测试用例
- 无失败测试
Plus 失败测试用例
- 无失败测试