CodeGauntlet / data /validation.jsonl
S-Dreamer's picture
Rename validation.jsonl to data/validation.jsonl
c738c17 verified
raw
history blame contribute delete
267 Bytes
{"id": "ex001", "source": "mbpp", "description": "Fix the off-by-one error in range", "code_buggy": "for i in range(1, len(arr)):", "code_fixed": "for i in range(len(arr)):", "bug_type": "logic", "tags": "off-by-one,adversarial", "metadata": "{\"executed\": false}"}