File size: 267 Bytes
357447a |
1 2 |
{"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}"}
|