BlazingCustoms/pybytecode-mbpp-3.12
Data card — MBPP held-out decompilation benchmark 383 MBPP reference solutions compiled to Python 3.12 bytecode and paired with their source, with the original task_id restored on every row. Built 2026-08-04 by tools/build_mbpp_ood.py. Redistributable under CC-BY-4.0, provided NOTICES.md ships alongside. The set Rows 383 (400 candidates − 17 contaminated) Source google-research-datasets/mbpp, config full Licence CC-BY-4.0 task_id restored 383 /… See the full description on the dataset page: https://huggingface.co/datasets/BlazingCustoms/pybytecode-mbpp-3.12.
0479
1def product_Equal(n):2 if n < 10:3 return False4 prodOdd = 15 prodEven = 16 while n > 0:7 digit = n % 108 prodOdd *= digit9 n = n // 1010 if n == 0:11 break12 digit = n % 1013 prodEven *= digit14 n = n // 1015 if prodOdd == prodEven:16 return True17 return False