Mbpp/165

❌ 均未通过 Base: FAIL Plus: FAIL
测试评估
指标结果
Base 测试FAIL
Plus 测试FAIL
代码长度225 字符
模型生成的代码 (225 字符)
def count_char_position(s: str) -> int:
    """
    Count the number of characters in a string that occur at the same position
    in the string (1-indexed) as in the English alphabet (case insensitive).
    """
    count = 0
Base 失败测试用例
  • ['xbcefg']
Plus 失败测试用例
  • ['xyzXYZ']