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 find_equal_tuple(Input, k):2 flag = 13 for tuple in Input:4 if len(tuple) != k:5 flag = 06 break7 return flag8 9def get_equal(Input, k):10 if find_equal_tuple(Input, k) == 1:11 return 'All tuples have same length'12 else:13 return 'All tuples do not have same length'