🔎 CRUXEval Sample Explorer 🔎

CRUXEval is a benchmark complementary to HumanEval and MBPP measuring code reasoning, understanding, and execution capabilities!


   
def f(input_string, spaces):
    return input_string.expandtabs(spaces)
assert f(r'a\tb', 4) == 'a\\tb'
CRUXEval-I
assert f(??) == 'a\\tb'

CRUXEval-O
assert f(r'a\tb', 4) == ??