CodeGauntlet / data /train.jsonl
S-Dreamer's picture
Rename train.jsonl to data/train.jsonl
4f7c0be 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}"}