mirror of
https://github.com/InternLM/InternBootcamp.git
synced 2026-04-19 12:58:04 +00:00
update to tech report version (#10)
* feat(run_eval): add checkpoint resume functionality and update example documentation; - update new bootcamp benchmark dataset * refactor(data_pipeline): optimize data generation pipeline; add multiple preset configurations for data generation * docs: update bootcamp list and add new scripts - Update Fulllist_InternBootcamp.md with new bootcamps and categories - Add new scripts to .gitignore: - examples/pipelines/filter_autogen_configs.py - examples/pipelines/quickgen_data_configs_from_eval_meta.py - Update dependencies in setup.py: - Add scipy and scikit-learn * refactor(internbootcamp): update bootcamp modules and improve error handling - Update import statements in __init__.py files - Add timestamp to target directory name in verl_data_preprocess.py - Improve error handling and scoring logic in bootcamp_judger.py - Remove unnecessary comments and update puzzle descriptions in multiple files
This commit is contained in:
parent
125a7818e0
commit
a8249acc18
2952 changed files with 105460 additions and 17649 deletions
100
examples/data/Intenbootcamp_eval/kakuro.jsonl
Normal file
100
examples/data/Intenbootcamp_eval/kakuro.jsonl
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 8, "(1, 0)": 3, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 3, "(1, 0)": 5, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 16\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [16, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 9, "(0, 2)": 1, "(1, 0)": 7, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 6,下方的 2 个白色格子之和为 5\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [6, 2], "down": [5, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 4, "(1, 0)": 3, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 8, "(1, 0)": 6, "(2, 0)": 1}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 8,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [8, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 2, "(1, 0)": 3, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 2, "(1, 0)": 2, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 7, "(1, 0)": 7, "(2, 0)": 3}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 3,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [3, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 1, "(1, 0)": 8, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 8, "(1, 0)": 3, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 4,下方的 2 个白色格子之和为 8\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [4, 2], "down": [8, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 1, "(1, 0)": 1, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 3, "(1, 0)": 8, "(2, 0)": 3}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 6,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [6, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 2, "(1, 0)": 7, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 7,下方的 2 个白色格子之和为 5\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [7, 2], "down": [5, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 4, "(1, 0)": 1, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 8\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [8, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 6, "(1, 0)": 5, "(2, 0)": 3}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 9, "(1, 0)": 5, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 16,下方的 2 个白色格子之和为 6\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [16, 2], "down": [6, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 9, "(1, 0)": 4, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 8,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [8, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 2, "(1, 0)": 9, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 1, "(1, 0)": 1, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 9, "(0, 2)": 1, "(1, 0)": 9, "(2, 0)": 1}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 9, "(0, 2)": 4, "(1, 0)": 7, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 7,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [7, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 3, "(1, 0)": 7, "(2, 0)": 5}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 12,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [12, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 9, "(0, 2)": 3, "(1, 0)": 2, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 5\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [5, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 6, "(1, 0)": 1, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 6, "(1, 0)": 4, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 8,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [8, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 6, "(1, 0)": 2, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 7,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [7, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 1, "(1, 0)": 6, "(2, 0)": 1}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 12,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [12, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 5, "(1, 0)": 5, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 3,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [3, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 2, "(1, 0)": 3, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 8, "(1, 0)": 1, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 7, "(1, 0)": 4, "(2, 0)": 5}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 8,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [8, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 6, "(1, 0)": 9, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 8, "(1, 0)": 6, "(2, 0)": 1}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 7,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [7, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 5, "(1, 0)": 8, "(2, 0)": 3}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 9, "(1, 0)": 4, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 8, "(1, 0)": 7, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 3,下方的 2 个白色格子之和为 6\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [3, 2], "down": [6, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 2, "(1, 0)": 4, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 8, "(1, 0)": 9, "(2, 0)": 3}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 8, "(1, 0)": 2, "(2, 0)": 5}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 7, "(1, 0)": 7, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 5,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [5, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 1, "(1, 0)": 4, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 8, "(1, 0)": 6, "(2, 0)": 1}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 4,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [4, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 1, "(1, 0)": 8, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 4, "(1, 0)": 2, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 8\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [8, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 6, "(1, 0)": 7, "(2, 0)": 1}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 3\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [3, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 8, "(1, 0)": 1, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 4, "(1, 0)": 4, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 8,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [8, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 1, "(1, 0)": 6, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 5,下方的 2 个白色格子之和为 17\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [5, 2], "down": [17, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 1, "(1, 0)": 8, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 8\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [8, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 2, "(1, 0)": 1, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 8, "(1, 0)": 6, "(2, 0)": 5}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 5,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [5, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 4, "(1, 0)": 1, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 15,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [15, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 9, "(1, 0)": 9, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 5, "(1, 0)": 8, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 7, "(1, 0)": 6, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 16\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [16, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 9, "(0, 2)": 5, "(1, 0)": 7, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 12,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [12, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 5, "(1, 0)": 1, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 6,下方的 2 个白色格子之和为 5\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [6, 2], "down": [5, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 4, "(1, 0)": 1, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 5,下方的 2 个白色格子之和为 6\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [5, 2], "down": [6, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 2, "(1, 0)": 4, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 8, "(1, 0)": 5, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 4\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [4, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 8, "(1, 0)": 1, "(2, 0)": 3}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 9, "(1, 0)": 3, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 6,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [6, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 4, "(1, 0)": 4, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 14\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [14, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 9, "(0, 2)": 5, "(1, 0)": 8, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 12,下方的 2 个白色格子之和为 5\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [12, 2], "down": [5, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 5, "(1, 0)": 3, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 8, "(1, 0)": 4, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 3, "(1, 0)": 5, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 8\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [8, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 5, "(1, 0)": 6, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 7,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [7, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 2, "(1, 0)": 1, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 6, "(1, 0)": 6, "(2, 0)": 1}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 15\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [15, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 7, "(1, 0)": 6, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 8,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [8, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 3, "(1, 0)": 7, "(2, 0)": 3}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 8\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [8, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 8, "(1, 0)": 6, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 8, "(1, 0)": 5, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 3\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [3, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 3, "(1, 0)": 1, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 4,下方的 2 个白色格子之和为 12\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [4, 2], "down": [12, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 1, "(1, 0)": 4, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 8, "(1, 0)": 6, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 9, "(1, 0)": 5, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 2, "(1, 0)": 8, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 7, "(1, 0)": 4, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 16\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [16, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 5, "(1, 0)": 7, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 4,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [4, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 1, "(1, 0)": 7, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 16,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [16, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 9, "(1, 0)": 2, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 4, "(1, 0)": 4, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 6, "(1, 0)": 7, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 12,下方的 2 个白色格子之和为 14\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [12, 2], "down": [14, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 4, "(1, 0)": 6, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 7\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [7, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 6, "(1, 0)": 4, "(2, 0)": 3}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 10,下方的 2 个白色格子之和为 8\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [10, 2], "down": [8, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 9, "(1, 0)": 1, "(2, 0)": 7}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 7, "(0, 2)": 2, "(1, 0)": 9, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 6\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [6, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 5, "(1, 0)": 2, "(2, 0)": 4}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 7,下方的 2 个白色格子之和为 14\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [7, 2], "down": [14, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 3, "(1, 0)": 9, "(2, 0)": 5}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 12,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [12, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 4, "(1, 0)": 2, "(2, 0)": 9}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 9,下方的 2 个白色格子之和为 6\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [9, 2], "down": [6, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 2, "(0, 2)": 7, "(1, 0)": 4, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 10\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [10, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 5, "(0, 2)": 9, "(1, 0)": 2, "(2, 0)": 8}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 11,下方的 2 个白色格子之和为 3\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [11, 2], "down": [3, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 8, "(0, 2)": 3, "(1, 0)": 2, "(2, 0)": 1}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 8,下方的 2 个白色格子之和为 3\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [8, 2], "down": [3, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 1, "(0, 2)": 7, "(1, 0)": 1, "(2, 0)": 2}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 9\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [9, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 7, "(1, 0)": 3, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 8,下方的 2 个白色格子之和为 13\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [8, 2], "down": [13, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 3, "(0, 2)": 5, "(1, 0)": 7, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 13,下方的 2 个白色格子之和为 15\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [13, 2], "down": [15, 2]}, {"type": "white"}, {"type": "white"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}], [{"type": "black"}, {"type": "black"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 4, "(0, 2)": 9, "(1, 0)": 9, "(2, 0)": 6}}}
|
||||
{"data_source": "Kakuro", "prompt": "你是Kakuro谜题解答者,请根据以下线索填充所有白色格子,确保每个横向或纵向的序列满足和的条件,且同一序列中的数字不重复。每个格子只能填1-9的整数。\n\n谜题线索:\n位于 (0, 0) 的黑色格子:右侧的 2 个白色格子之和为 14,下方的 2 个白色格子之和为 11\n\n需要填充的白色格子位于以下坐标:(0, 1), (0, 2), (1, 0), (2, 0)。\n\n请将你的答案以字典形式放在[answer]和[/answer]之间,键为坐标字符串,如\"(行,列)\",值为对应的整数。例如:\n[answer]\n{\"(0,1)\": 3, \"(0,2)\": 4, \"(1,0)\":5, \"(2,0)\":2}\n[/answer]\n请确保所有白色格子都被正确填写,且没有多余或缺少的项。", "ground_truth": {"grid": [[{"type": "black", "right": [14, 2], "down": [11, 2]}, {"type": "white"}, {"type": "white"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}], [{"type": "white"}, {"type": "black"}, {"type": "black"}]], "solution": {"(0, 1)": 6, "(0, 2)": 8, "(1, 0)": 5, "(2, 0)": 6}}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue