messages_deepseek listlengths 2 2 | nums sequencelengths 4 4 | target int64 10 100 | solution sequencelengths 3 3 | parsed_results dict |
|---|---|---|---|---|
[
{
"content": "Combine these initial numbers [60, 48, 10, 68] using only arithmetic operations (+, -, *, /) to reach the target value 16. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations perform... | [
60,
48,
10,
68
] | 16 | [
"68-60=8",
"48/8=6",
"10+6=16"
] | null |
[
{
"content": "Combine these initial numbers [18, 63, 15, 8] using only arithmetic operations (+, -, *, /) to reach the target value 12. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations performe... | [
18,
63,
15,
8
] | 12 | [
"18+63=81",
"15+81=96",
"96/8=12"
] | null |
[
{
"content": "Combine these initial numbers [81, 86, 29, 26] using only arithmetic operations (+, -, *, /) to reach the target value 15. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations perform... | [
81,
86,
29,
26
] | 15 | [
"86-81=5",
"29-26=3",
"5*3=15"
] | {
"completion_length": 621,
"initial_numbers": [
81,
86,
29,
26
],
"remarks": "Trajectory is valid with operations: ['29-26=3', '86-81=5', '5*3=15']",
"solved": true,
"target": 15
} |
[
{
"content": "Combine these initial numbers [72, 89, 18, 71] using only arithmetic operations (+, -, *, /) to reach the target value 17. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations perform... | [
72,
89,
18,
71
] | 17 | [
"72*18=1296",
"1296-89=1207",
"1207/71=17"
] | null |
[
{
"content": "Combine these initial numbers [88, 62, 24, 62] using only arithmetic operations (+, -, *, /) to reach the target value 65. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations perform... | [
88,
62,
24,
62
] | 65 | [
"88-24=64",
"62/62=1",
"64+1=65"
] | {
"completion_length": 3700,
"initial_numbers": [
88,
62,
24,
62
],
"remarks": "Trajectory is valid with operations: ['62/62=1', '88-24=64', '1+64=65']",
"solved": true,
"target": 65
} |
[
{
"content": "Combine these initial numbers [9, 84, 23, 14] using only arithmetic operations (+, -, *, /) to reach the target value 26. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations performe... | [
9,
84,
23,
14
] | 26 | [
"9+23=32",
"84/14=6",
"32-6=26"
] | null |
[
{
"content": "Combine these initial numbers [8, 14, 95, 88] using only arithmetic operations (+, -, *, /) to reach the target value 92. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations performe... | [
8,
14,
95,
88
] | 92 | [
"88/8=11",
"95-14=81",
"11+81=92"
] | null |
[
{
"content": "Combine these initial numbers [42, 49, 51, 60] using only arithmetic operations (+, -, *, /) to reach the target value 36. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations perform... | [
42,
49,
51,
60
] | 36 | [
"60-42=18",
"51-49=2",
"18*2=36"
] | null |
[
{
"content": "Combine these initial numbers [10, 86, 43, 34] using only arithmetic operations (+, -, *, /) to reach the target value 78. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations perform... | [
10,
86,
43,
34
] | 78 | [
"86/43=2",
"34*2=68",
"10+68=78"
] | {
"completion_length": 726,
"initial_numbers": [
10,
86,
43,
34
],
"remarks": "Trajectory is valid with operations: ['86/43=2', '2*34=68', '68+10=78']",
"solved": true,
"target": 78
} |
[
{
"content": "Combine these initial numbers [59, 14, 3, 30] using only arithmetic operations (+, -, *, /) to reach the target value 17. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations performe... | [
59,
14,
3,
30
] | 17 | [
"59+14=73",
"3*30=90",
"90-73=17"
] | {
"completion_length": 8317,
"initial_numbers": [
59,
14,
3,
30
],
"remarks": "Trajectory is valid with operations: ['30*3=90', '90-59=31', '31-14=17']",
"solved": true,
"target": 17
} |
[
{
"content": "Combine these initial numbers [64, 66, 11, 48] using only arithmetic operations (+, -, *, /) to reach the target value 74. All initial numbers must be used exactly once.\nConclude with the final result in EXACTLY this format:\n```\nSOLUTION: YES/NO\nOPERATIONS: list of string of operations perform... | [
64,
66,
11,
48
] | 74 | [
"66-64=2",
"48-11=37",
"2*37=74"
] | null |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 110