Mbpp/90

✅ 完美通过 Base: PASS Plus: PASS
测试评估
指标结果
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 失败测试用例
  • 无失败测试