nums listlengths 4 4 | target int64 10 100 | solution listlengths 3 3 | optimal_path stringlengths 282 529 | start_size int64 4 4 |
|---|---|---|---|---|
[
99,
9,
10,
81
] | 19 | [
"99-9=90",
"81-10=71",
"90-71=19"
] | Current State: 19:[99, 9, 10, 81], Operations: []
Exploring Operation: 99-9=90, Resulting Numbers: [10, 81, 90]
Generated Node #2: [10, 81, 90] from Operation: 99-9=90
Current State: 19:[10, 81, 90], Operations: ['99-9=90']
Exploring Operation: 81-10=71, Resulting Numbers: [90, 71]
Generated Node #3: [90, 71] from Operation: 81-10=71
Current State: 19:[90, 71], Operations: ['99-9=90', '81-10=71']
Exploring Operation: 90-71=19, Resulting Numbers: [19]
19,19 equal: Goal Reached
| 4 |
[
19,
30,
51,
2
] | 34 | [
"51-19=32",
"2*32=64",
"64-30=34"
] | Current State: 34:[19, 30, 51, 2], Operations: []
Exploring Operation: 51-19=32, Resulting Numbers: [30, 2, 32]
Generated Node #2: [30, 2, 32] from Operation: 51-19=32
Current State: 34:[30, 2, 32], Operations: ['51-19=32']
Exploring Operation: 2*32=64, Resulting Numbers: [30, 64]
Generated Node #3: [30, 64] from Operation: 2*32=64
Current State: 34:[30, 64], Operations: ['51-19=32', '2*32=64']
Exploring Operation: 64-30=34, Resulting Numbers: [34]
34,34 equal: Goal Reached
| 4 |
[
23,
89,
8,
72
] | 14 | [
"89-23=66",
"8+72=80",
"80-66=14"
] | Current State: 14:[23, 89, 8, 72], Operations: []
Exploring Operation: 89-23=66, Resulting Numbers: [8, 72, 66]
Generated Node #2: [8, 72, 66] from Operation: 89-23=66
Current State: 14:[8, 72, 66], Operations: ['89-23=66']
Exploring Operation: 8+72=80, Resulting Numbers: [66, 80]
Generated Node #3: [66, 80] from Operation: 8+72=80
Current State: 14:[66, 80], Operations: ['89-23=66', '8+72=80']
Exploring Operation: 80-66=14, Resulting Numbers: [14]
14,14 equal: Goal Reached
| 4 |
[
47,
76,
93,
75
] | 45 | [
"47+76=123",
"93+75=168",
"168-123=45"
] | Current State: 45:[47, 76, 93, 75], Operations: []
Exploring Operation: 47+76=123, Resulting Numbers: [93, 75, 123]
Generated Node #2: [93, 75, 123] from Operation: 47+76=123
Current State: 45:[93, 75, 123], Operations: ['47+76=123']
Exploring Operation: 93+75=168, Resulting Numbers: [123, 168]
Generated Node #3: [123, 168] from Operation: 93+75=168
Current State: 45:[123, 168], Operations: ['47+76=123', '93+75=168']
Exploring Operation: 168-123=45, Resulting Numbers: [45]
45,45 equal: Goal Reached
| 4 |
[
53,
57,
76,
14
] | 58 | [
"57-53=4",
"76-14=62",
"62-4=58"
] | Current State: 58:[53, 57, 76, 14], Operations: []
Exploring Operation: 57-53=4, Resulting Numbers: [76, 14, 4]
Generated Node #2: [76, 14, 4] from Operation: 57-53=4
Current State: 58:[76, 14, 4], Operations: ['57-53=4']
Exploring Operation: 76-14=62, Resulting Numbers: [4, 62]
Generated Node #3: [4, 62] from Operation: 76-14=62
Current State: 58:[4, 62], Operations: ['57-53=4', '76-14=62']
Exploring Operation: 62-4=58, Resulting Numbers: [58]
58,58 equal: Goal Reached
| 4 |
[
64,
93,
9,
32
] | 52 | [
"93-64=29",
"32-9=23",
"29+23=52"
] | Current State: 52:[64, 93, 9, 32], Operations: []
Exploring Operation: 93-64=29, Resulting Numbers: [9, 32, 29]
Generated Node #2: [9, 32, 29] from Operation: 93-64=29
Current State: 52:[9, 32, 29], Operations: ['93-64=29']
Exploring Operation: 32-9=23, Resulting Numbers: [29, 23]
Generated Node #3: [29, 23] from Operation: 32-9=23
Current State: 52:[29, 23], Operations: ['93-64=29', '32-9=23']
Exploring Operation: 29+23=52, Resulting Numbers: [52]
52,52 equal: Goal Reached
| 4 |
[
72,
49,
66,
16
] | 74 | [
"49-16=33",
"66/33=2",
"72+2=74"
] | Current State: 74:[72, 49, 66, 16], Operations: []
Exploring Operation: 49-16=33, Resulting Numbers: [72, 66, 33]
Generated Node #2: [72, 66, 33] from Operation: 49-16=33
Current State: 74:[72, 66, 33], Operations: ['49-16=33']
Exploring Operation: 66/33=2, Resulting Numbers: [72, 2]
Generated Node #3: [72, 2] from Operation: 66/33=2
Current State: 74:[72, 2], Operations: ['49-16=33', '66/33=2']
Exploring Operation: 72+2=74, Resulting Numbers: [74]
74,74 equal: Goal Reached
| 4 |
[
29,
81,
31,
61
] | 40 | [
"81-29=52",
"31+61=92",
"92-52=40"
] | Current State: 40:[29, 81, 31, 61], Operations: []
Exploring Operation: 81-29=52, Resulting Numbers: [31, 61, 52]
Generated Node #2: [31, 61, 52] from Operation: 81-29=52
Current State: 40:[31, 61, 52], Operations: ['81-29=52']
Exploring Operation: 31+61=92, Resulting Numbers: [52, 92]
Generated Node #3: [52, 92] from Operation: 31+61=92
Current State: 40:[52, 92], Operations: ['81-29=52', '31+61=92']
Exploring Operation: 92-52=40, Resulting Numbers: [40]
40,40 equal: Goal Reached
| 4 |
[
2,
26,
39,
40
] | 50 | [
"26+39=65",
"65-40=25",
"2*25=50"
] | Current State: 50:[2, 26, 39, 40], Operations: []
Exploring Operation: 26+39=65, Resulting Numbers: [2, 40, 65]
Generated Node #2: [2, 40, 65] from Operation: 26+39=65
Current State: 50:[2, 40, 65], Operations: ['26+39=65']
Exploring Operation: 65-40=25, Resulting Numbers: [2, 25]
Generated Node #3: [2, 25] from Operation: 65-40=25
Current State: 50:[2, 25], Operations: ['26+39=65', '65-40=25']
Exploring Operation: 2*25=50, Resulting Numbers: [50]
50,50 equal: Goal Reached
| 4 |
[
64,
33,
64,
3
] | 36 | [
"64+33=97",
"64-3=61",
"97-61=36"
] | Current State: 36:[64, 33, 64, 3], Operations: []
Exploring Operation: 64+33=97, Resulting Numbers: [3, 97]
Generated Node #2: [3, 97] from Operation: 64+33=97
Current State: 36:[3, 97], Operations: ['64+33=97']
Exploring Operation: 64-3=61, Resulting Numbers: [97, 61]
Generated Node #3: [97, 61] from Operation: 64-3=61
Current State: 36:[97, 61], Operations: ['64+33=97', '64-3=61']
Exploring Operation: 97-61=36, Resulting Numbers: [36]
36,36 equal: Goal Reached
| 4 |
[
40,
38,
6,
23
] | 64 | [
"40-23=17",
"6*17=102",
"102-38=64"
] | Current State: 64:[40, 38, 6, 23], Operations: []
Exploring Operation: 40-23=17, Resulting Numbers: [38, 6, 17]
Generated Node #2: [38, 6, 17] from Operation: 40-23=17
Current State: 64:[38, 6, 17], Operations: ['40-23=17']
Exploring Operation: 6*17=102, Resulting Numbers: [38, 102]
Generated Node #3: [38, 102] from Operation: 6*17=102
Current State: 64:[38, 102], Operations: ['40-23=17', '6*17=102']
Exploring Operation: 102-38=64, Resulting Numbers: [64]
64,64 equal: Goal Reached
| 4 |
[
39,
10,
35,
62
] | 56 | [
"39-10=29",
"62-35=27",
"29+27=56"
] | Current State: 56:[39, 10, 35, 62], Operations: []
Exploring Operation: 39-10=29, Resulting Numbers: [35, 62, 29]
Generated Node #2: [35, 62, 29] from Operation: 39-10=29
Current State: 56:[35, 62, 29], Operations: ['39-10=29']
Exploring Operation: 62-35=27, Resulting Numbers: [29, 27]
Generated Node #3: [29, 27] from Operation: 62-35=27
Current State: 56:[29, 27], Operations: ['39-10=29', '62-35=27']
Exploring Operation: 29+27=56, Resulting Numbers: [56]
56,56 equal: Goal Reached
| 4 |
[
71,
79,
94,
11
] | 97 | [
"79-71=8",
"94+11=105",
"105-8=97"
] | Current State: 97:[71, 79, 94, 11], Operations: []
Exploring Operation: 79-71=8, Resulting Numbers: [94, 11, 8]
Generated Node #2: [94, 11, 8] from Operation: 79-71=8
Current State: 97:[94, 11, 8], Operations: ['79-71=8']
Exploring Operation: 94+11=105, Resulting Numbers: [8, 105]
Generated Node #3: [8, 105] from Operation: 94+11=105
Current State: 97:[8, 105], Operations: ['79-71=8', '94+11=105']
Exploring Operation: 105-8=97, Resulting Numbers: [97]
97,97 equal: Goal Reached
| 4 |
[
16,
7,
95,
7
] | 66 | [
"16+7=23",
"7*23=161",
"161-95=66"
] | Current State: 66:[16, 7, 95, 7], Operations: []
Exploring Operation: 16+7=23, Resulting Numbers: [95, 23]
Generated Node #2: [95, 23] from Operation: 16+7=23
Current State: 66:[95, 23], Operations: ['16+7=23']
Exploring Operation: 7*23=161, Resulting Numbers: [95, 161]
Generated Node #3: [95, 161] from Operation: 7*23=161
Current State: 66:[95, 161], Operations: ['16+7=23', '7*23=161']
Exploring Operation: 161-95=66, Resulting Numbers: [66]
66,66 equal: Goal Reached
| 4 |
[
14,
86,
10,
64
] | 18 | [
"86-14=72",
"64-10=54",
"72-54=18"
] | Current State: 18:[14, 86, 10, 64], Operations: []
Exploring Operation: 86-14=72, Resulting Numbers: [10, 64, 72]
Generated Node #2: [10, 64, 72] from Operation: 86-14=72
Current State: 18:[10, 64, 72], Operations: ['86-14=72']
Exploring Operation: 64-10=54, Resulting Numbers: [72, 54]
Generated Node #3: [72, 54] from Operation: 64-10=54
Current State: 18:[72, 54], Operations: ['86-14=72', '64-10=54']
Exploring Operation: 72-54=18, Resulting Numbers: [18]
18,18 equal: Goal Reached
| 4 |
[
28,
81,
85,
84
] | 14 | [
"84-28=56",
"85-81=4",
"56/4=14"
] | Current State: 14:[28, 81, 85, 84], Operations: []
Exploring Operation: 84-28=56, Resulting Numbers: [81, 85, 56]
Generated Node #2: [81, 85, 56] from Operation: 84-28=56
Current State: 14:[81, 85, 56], Operations: ['84-28=56']
Exploring Operation: 85-81=4, Resulting Numbers: [56, 4]
Generated Node #3: [56, 4] from Operation: 85-81=4
Current State: 14:[56, 4], Operations: ['84-28=56', '85-81=4']
Exploring Operation: 56/4=14, Resulting Numbers: [14]
14,14 equal: Goal Reached
| 4 |
[
70,
12,
41,
35
] | 72 | [
"70-41=29",
"35-29=6",
"12*6=72"
] | Current State: 72:[70, 12, 41, 35], Operations: []
Exploring Operation: 70-41=29, Resulting Numbers: [12, 35, 29]
Generated Node #2: [12, 35, 29] from Operation: 70-41=29
Current State: 72:[12, 35, 29], Operations: ['70-41=29']
Exploring Operation: 35-29=6, Resulting Numbers: [12, 6]
Generated Node #3: [12, 6] from Operation: 35-29=6
Current State: 72:[12, 6], Operations: ['70-41=29', '35-29=6']
Exploring Operation: 12*6=72, Resulting Numbers: [72]
72,72 equal: Goal Reached
| 4 |
[
56,
77,
11,
7
] | 58 | [
"56/7=8",
"77-11=66",
"66-8=58"
] | Current State: 58:[56, 77, 11, 7], Operations: []
Exploring Operation: 56/7=8, Resulting Numbers: [77, 11, 8]
Generated Node #2: [77, 11, 8] from Operation: 56/7=8
Current State: 58:[77, 11, 8], Operations: ['56/7=8']
Exploring Operation: 77-11=66, Resulting Numbers: [8, 66]
Generated Node #3: [8, 66] from Operation: 77-11=66
Current State: 58:[8, 66], Operations: ['56/7=8', '77-11=66']
Exploring Operation: 66-8=58, Resulting Numbers: [58]
58,58 equal: Goal Reached
| 4 |
[
16,
74,
18,
98
] | 79 | [
"98-18=80",
"80/16=5",
"74+5=79"
] | Current State: 79:[16, 74, 18, 98], Operations: []
Exploring Operation: 98-18=80, Resulting Numbers: [16, 74, 80]
Generated Node #2: [16, 74, 80] from Operation: 98-18=80
Current State: 79:[16, 74, 80], Operations: ['98-18=80']
Exploring Operation: 80/16=5, Resulting Numbers: [74, 5]
Generated Node #3: [74, 5] from Operation: 80/16=5
Current State: 79:[74, 5], Operations: ['98-18=80', '80/16=5']
Exploring Operation: 74+5=79, Resulting Numbers: [79]
79,79 equal: Goal Reached
| 4 |
[
18,
33,
36,
39
] | 63 | [
"39-18=21",
"36-33=3",
"21*3=63"
] | Current State: 63:[18, 33, 36, 39], Operations: []
Exploring Operation: 39-18=21, Resulting Numbers: [33, 36, 21]
Generated Node #2: [33, 36, 21] from Operation: 39-18=21
Current State: 63:[33, 36, 21], Operations: ['39-18=21']
Exploring Operation: 36-33=3, Resulting Numbers: [21, 3]
Generated Node #3: [21, 3] from Operation: 36-33=3
Current State: 63:[21, 3], Operations: ['39-18=21', '36-33=3']
Exploring Operation: 21*3=63, Resulting Numbers: [63]
63,63 equal: Goal Reached
| 4 |
[
49,
44,
18,
84
] | 61 | [
"49-44=5",
"84-18=66",
"66-5=61"
] | Current State: 61:[49, 44, 18, 84], Operations: []
Exploring Operation: 49-44=5, Resulting Numbers: [18, 84, 5]
Generated Node #2: [18, 84, 5] from Operation: 49-44=5
Current State: 61:[18, 84, 5], Operations: ['49-44=5']
Exploring Operation: 84-18=66, Resulting Numbers: [5, 66]
Generated Node #3: [5, 66] from Operation: 84-18=66
Current State: 61:[5, 66], Operations: ['49-44=5', '84-18=66']
Exploring Operation: 66-5=61, Resulting Numbers: [61]
61,61 equal: Goal Reached
| 4 |
[
42,
9,
54,
49
] | 87 | [
"54-49=5",
"9*5=45",
"42+45=87"
] | Current State: 87:[42, 9, 54, 49], Operations: []
Exploring Operation: 54-49=5, Resulting Numbers: [42, 9, 5]
Generated Node #2: [42, 9, 5] from Operation: 54-49=5
Current State: 87:[42, 9, 5], Operations: ['54-49=5']
Exploring Operation: 9*5=45, Resulting Numbers: [42, 45]
Generated Node #3: [42, 45] from Operation: 9*5=45
Current State: 87:[42, 45], Operations: ['54-49=5', '9*5=45']
Exploring Operation: 42+45=87, Resulting Numbers: [87]
87,87 equal: Goal Reached
| 4 |
[
18,
3,
2,
24
] | 66 | [
"18+3=21",
"2*21=42",
"24+42=66"
] | Current State: 66:[18, 3, 2, 24], Operations: []
Exploring Operation: 18+3=21, Resulting Numbers: [2, 24, 21]
Generated Node #2: [2, 24, 21] from Operation: 18+3=21
Current State: 66:[2, 24, 21], Operations: ['18+3=21']
Exploring Operation: 2*21=42, Resulting Numbers: [24, 42]
Generated Node #3: [24, 42] from Operation: 2*21=42
Current State: 66:[24, 42], Operations: ['18+3=21', '2*21=42']
Exploring Operation: 24+42=66, Resulting Numbers: [66]
66,66 equal: Goal Reached
| 4 |
[
13,
3,
18,
12
] | 69 | [
"13*3=39",
"18+12=30",
"39+30=69"
] | Current State: 69:[13, 3, 18, 12], Operations: []
Exploring Operation: 13*3=39, Resulting Numbers: [18, 12, 39]
Generated Node #2: [18, 12, 39] from Operation: 13*3=39
Current State: 69:[18, 12, 39], Operations: ['13*3=39']
Exploring Operation: 18+12=30, Resulting Numbers: [39, 30]
Generated Node #3: [39, 30] from Operation: 18+12=30
Current State: 69:[39, 30], Operations: ['13*3=39', '18+12=30']
Exploring Operation: 39+30=69, Resulting Numbers: [69]
69,69 equal: Goal Reached
| 4 |
[
7,
47,
82,
74
] | 79 | [
"82-47=35",
"35/7=5",
"74+5=79"
] | Current State: 79:[7, 47, 82, 74], Operations: []
Exploring Operation: 82-47=35, Resulting Numbers: [7, 74, 35]
Generated Node #2: [7, 74, 35] from Operation: 82-47=35
Current State: 79:[7, 74, 35], Operations: ['82-47=35']
Exploring Operation: 35/7=5, Resulting Numbers: [74, 5]
Generated Node #3: [74, 5] from Operation: 35/7=5
Current State: 79:[74, 5], Operations: ['82-47=35', '35/7=5']
Exploring Operation: 74+5=79, Resulting Numbers: [79]
79,79 equal: Goal Reached
| 4 |
[
5,
75,
51,
96
] | 30 | [
"75/5=15",
"96-51=45",
"45-15=30"
] | Current State: 30:[5, 75, 51, 96], Operations: []
Exploring Operation: 75/5=15, Resulting Numbers: [51, 96, 15]
Generated Node #2: [51, 96, 15] from Operation: 75/5=15
Current State: 30:[51, 96, 15], Operations: ['75/5=15']
Exploring Operation: 96-51=45, Resulting Numbers: [15, 45]
Generated Node #3: [15, 45] from Operation: 96-51=45
Current State: 30:[15, 45], Operations: ['75/5=15', '96-51=45']
Exploring Operation: 45-15=30, Resulting Numbers: [30]
30,30 equal: Goal Reached
| 4 |
[
96,
22,
36,
79
] | 75 | [
"96+22=118",
"79-36=43",
"118-43=75"
] | Current State: 75:[96, 22, 36, 79], Operations: []
Exploring Operation: 96+22=118, Resulting Numbers: [36, 79, 118]
Generated Node #2: [36, 79, 118] from Operation: 96+22=118
Current State: 75:[36, 79, 118], Operations: ['96+22=118']
Exploring Operation: 79-36=43, Resulting Numbers: [118, 43]
Generated Node #3: [118, 43] from Operation: 79-36=43
Current State: 75:[118, 43], Operations: ['96+22=118', '79-36=43']
Exploring Operation: 118-43=75, Resulting Numbers: [75]
75,75 equal: Goal Reached
| 4 |
[
23,
46,
86,
74
] | 49 | [
"46/23=2",
"74/2=37",
"86-37=49"
] | Current State: 49:[23, 46, 86, 74], Operations: []
Exploring Operation: 46/23=2, Resulting Numbers: [86, 74, 2]
Generated Node #2: [86, 74, 2] from Operation: 46/23=2
Current State: 49:[86, 74, 2], Operations: ['46/23=2']
Exploring Operation: 74/2=37, Resulting Numbers: [86, 37]
Generated Node #3: [86, 37] from Operation: 74/2=37
Current State: 49:[86, 37], Operations: ['46/23=2', '74/2=37']
Exploring Operation: 86-37=49, Resulting Numbers: [49]
49,49 equal: Goal Reached
| 4 |
[
22,
91,
3,
88
] | 57 | [
"91-22=69",
"88-69=19",
"3*19=57"
] | Current State: 57:[22, 91, 3, 88], Operations: []
Exploring Operation: 91-22=69, Resulting Numbers: [3, 88, 69]
Generated Node #2: [3, 88, 69] from Operation: 91-22=69
Current State: 57:[3, 88, 69], Operations: ['91-22=69']
Exploring Operation: 88-69=19, Resulting Numbers: [3, 19]
Generated Node #3: [3, 19] from Operation: 88-69=19
Current State: 57:[3, 19], Operations: ['91-22=69', '88-69=19']
Exploring Operation: 3*19=57, Resulting Numbers: [57]
57,57 equal: Goal Reached
| 4 |
[
70,
65,
15,
5
] | 12 | [
"70+65=135",
"135/5=27",
"27-15=12"
] | Current State: 12:[70, 65, 15, 5], Operations: []
Exploring Operation: 70+65=135, Resulting Numbers: [15, 5, 135]
Generated Node #2: [15, 5, 135] from Operation: 70+65=135
Current State: 12:[15, 5, 135], Operations: ['70+65=135']
Exploring Operation: 135/5=27, Resulting Numbers: [15, 27]
Generated Node #3: [15, 27] from Operation: 135/5=27
Current State: 12:[15, 27], Operations: ['70+65=135', '135/5=27']
Exploring Operation: 27-15=12, Resulting Numbers: [12]
12,12 equal: Goal Reached
| 4 |
[
19,
47,
13,
15
] | 99 | [
"19-15=4",
"13*4=52",
"47+52=99"
] | Current State: 99:[19, 47, 13, 15], Operations: []
Exploring Operation: 19-15=4, Resulting Numbers: [47, 13, 4]
Generated Node #2: [47, 13, 4] from Operation: 19-15=4
Current State: 99:[47, 13, 4], Operations: ['19-15=4']
Exploring Operation: 13*4=52, Resulting Numbers: [47, 52]
Generated Node #3: [47, 52] from Operation: 13*4=52
Current State: 99:[47, 52], Operations: ['19-15=4', '13*4=52']
Exploring Operation: 47+52=99, Resulting Numbers: [99]
99,99 equal: Goal Reached
| 4 |
[
71,
50,
3,
5
] | 27 | [
"50/5=10",
"71+10=81",
"81/3=27"
] | Current State: 27:[71, 50, 3, 5], Operations: []
Exploring Operation: 50/5=10, Resulting Numbers: [71, 3, 10]
Generated Node #2: [71, 3, 10] from Operation: 50/5=10
Current State: 27:[71, 3, 10], Operations: ['50/5=10']
Exploring Operation: 71+10=81, Resulting Numbers: [3, 81]
Generated Node #3: [3, 81] from Operation: 71+10=81
Current State: 27:[3, 81], Operations: ['50/5=10', '71+10=81']
Exploring Operation: 81/3=27, Resulting Numbers: [27]
27,27 equal: Goal Reached
| 4 |
[
83,
63,
5,
12
] | 74 | [
"12-5=7",
"63/7=9",
"83-9=74"
] | Current State: 74:[83, 63, 5, 12], Operations: []
Exploring Operation: 12-5=7, Resulting Numbers: [83, 63, 7]
Generated Node #2: [83, 63, 7] from Operation: 12-5=7
Current State: 74:[83, 63, 7], Operations: ['12-5=7']
Exploring Operation: 63/7=9, Resulting Numbers: [83, 9]
Generated Node #3: [83, 9] from Operation: 63/7=9
Current State: 74:[83, 9], Operations: ['12-5=7', '63/7=9']
Exploring Operation: 83-9=74, Resulting Numbers: [74]
74,74 equal: Goal Reached
| 4 |
[
21,
68,
59,
45
] | 57 | [
"68-21=47",
"59+45=104",
"104-47=57"
] | Current State: 57:[21, 68, 59, 45], Operations: []
Exploring Operation: 68-21=47, Resulting Numbers: [59, 45, 47]
Generated Node #2: [59, 45, 47] from Operation: 68-21=47
Current State: 57:[59, 45, 47], Operations: ['68-21=47']
Exploring Operation: 59+45=104, Resulting Numbers: [47, 104]
Generated Node #3: [47, 104] from Operation: 59+45=104
Current State: 57:[47, 104], Operations: ['68-21=47', '59+45=104']
Exploring Operation: 104-47=57, Resulting Numbers: [57]
57,57 equal: Goal Reached
| 4 |
[
41,
94,
58,
41
] | 58 | [
"41-41=0",
"94*0=0",
"58+0=58"
] | Current State: 58:[41, 94, 58, 41], Operations: []
Exploring Operation: 41-41=0, Resulting Numbers: [94, 58, 0]
Generated Node #2: [94, 58, 0] from Operation: 41-41=0
Current State: 58:[94, 58, 0], Operations: ['41-41=0']
Exploring Operation: 94*0=0, Resulting Numbers: [58, 0]
Generated Node #3: [58, 0] from Operation: 94*0=0
Current State: 58:[58, 0], Operations: ['41-41=0', '94*0=0']
Exploring Operation: 58+0=58, Resulting Numbers: [58]
58,58 equal: Goal Reached
| 4 |
[
6,
88,
21,
2
] | 52 | [
"6+88=94",
"21*2=42",
"94-42=52"
] | Current State: 52:[6, 88, 21, 2], Operations: []
Exploring Operation: 6+88=94, Resulting Numbers: [21, 2, 94]
Generated Node #2: [21, 2, 94] from Operation: 6+88=94
Current State: 52:[21, 2, 94], Operations: ['6+88=94']
Exploring Operation: 21*2=42, Resulting Numbers: [94, 42]
Generated Node #3: [94, 42] from Operation: 21*2=42
Current State: 52:[94, 42], Operations: ['6+88=94', '21*2=42']
Exploring Operation: 94-42=52, Resulting Numbers: [52]
52,52 equal: Goal Reached
| 4 |
[
81,
96,
70,
36
] | 71 | [
"81+96=177",
"70+36=106",
"177-106=71"
] | Current State: 71:[81, 96, 70, 36], Operations: []
Exploring Operation: 81+96=177, Resulting Numbers: [70, 36, 177]
Generated Node #2: [70, 36, 177] from Operation: 81+96=177
Current State: 71:[70, 36, 177], Operations: ['81+96=177']
Exploring Operation: 70+36=106, Resulting Numbers: [177, 106]
Generated Node #3: [177, 106] from Operation: 70+36=106
Current State: 71:[177, 106], Operations: ['81+96=177', '70+36=106']
Exploring Operation: 177-106=71, Resulting Numbers: [71]
71,71 equal: Goal Reached
| 4 |
[
51,
63,
79,
71
] | 20 | [
"63-51=12",
"79-71=8",
"12+8=20"
] | Current State: 20:[51, 63, 79, 71], Operations: []
Exploring Operation: 63-51=12, Resulting Numbers: [79, 71, 12]
Generated Node #2: [79, 71, 12] from Operation: 63-51=12
Current State: 20:[79, 71, 12], Operations: ['63-51=12']
Exploring Operation: 79-71=8, Resulting Numbers: [12, 8]
Generated Node #3: [12, 8] from Operation: 79-71=8
Current State: 20:[12, 8], Operations: ['63-51=12', '79-71=8']
Exploring Operation: 12+8=20, Resulting Numbers: [20]
20,20 equal: Goal Reached
| 4 |
[
26,
63,
1,
65
] | 50 | [
"26-1=25",
"65-63=2",
"25*2=50"
] | Current State: 50:[26, 63, 1, 65], Operations: []
Exploring Operation: 26-1=25, Resulting Numbers: [63, 65, 25]
Generated Node #2: [63, 65, 25] from Operation: 26-1=25
Current State: 50:[63, 65, 25], Operations: ['26-1=25']
Exploring Operation: 65-63=2, Resulting Numbers: [25, 2]
Generated Node #3: [25, 2] from Operation: 65-63=2
Current State: 50:[25, 2], Operations: ['26-1=25', '65-63=2']
Exploring Operation: 25*2=50, Resulting Numbers: [50]
50,50 equal: Goal Reached
| 4 |
[
63,
51,
14,
30
] | 98 | [
"63+51=114",
"30-14=16",
"114-16=98"
] | Current State: 98:[63, 51, 14, 30], Operations: []
Exploring Operation: 63+51=114, Resulting Numbers: [14, 30, 114]
Generated Node #2: [14, 30, 114] from Operation: 63+51=114
Current State: 98:[14, 30, 114], Operations: ['63+51=114']
Exploring Operation: 30-14=16, Resulting Numbers: [114, 16]
Generated Node #3: [114, 16] from Operation: 30-14=16
Current State: 98:[114, 16], Operations: ['63+51=114', '30-14=16']
Exploring Operation: 114-16=98, Resulting Numbers: [98]
98,98 equal: Goal Reached
| 4 |
[
62,
97,
94,
93
] | 34 | [
"97-62=35",
"94-93=1",
"35-1=34"
] | Current State: 34:[62, 97, 94, 93], Operations: []
Exploring Operation: 97-62=35, Resulting Numbers: [94, 93, 35]
Generated Node #2: [94, 93, 35] from Operation: 97-62=35
Current State: 34:[94, 93, 35], Operations: ['97-62=35']
Exploring Operation: 94-93=1, Resulting Numbers: [35, 1]
Generated Node #3: [35, 1] from Operation: 94-93=1
Current State: 34:[35, 1], Operations: ['97-62=35', '94-93=1']
Exploring Operation: 35-1=34, Resulting Numbers: [34]
34,34 equal: Goal Reached
| 4 |
[
66,
59,
33,
64
] | 13 | [
"66-64=2",
"59-33=26",
"26/2=13"
] | Current State: 13:[66, 59, 33, 64], Operations: []
Exploring Operation: 66-64=2, Resulting Numbers: [59, 33, 2]
Generated Node #2: [59, 33, 2] from Operation: 66-64=2
Current State: 13:[59, 33, 2], Operations: ['66-64=2']
Exploring Operation: 59-33=26, Resulting Numbers: [2, 26]
Generated Node #3: [2, 26] from Operation: 59-33=26
Current State: 13:[2, 26], Operations: ['66-64=2', '59-33=26']
Exploring Operation: 26/2=13, Resulting Numbers: [13]
13,13 equal: Goal Reached
| 4 |
[
5,
1,
49,
69
] | 100 | [
"5*1=5",
"69-49=20",
"5*20=100"
] | Current State: 100:[5, 1, 49, 69], Operations: []
Exploring Operation: 5*1=5, Resulting Numbers: [49, 69, 5]
Generated Node #2: [49, 69, 5] from Operation: 5*1=5
Current State: 100:[49, 69, 5], Operations: ['5*1=5']
Exploring Operation: 69-49=20, Resulting Numbers: [5, 20]
Generated Node #3: [5, 20] from Operation: 69-49=20
Current State: 100:[5, 20], Operations: ['5*1=5', '69-49=20']
Exploring Operation: 5*20=100, Resulting Numbers: [100]
100,100 equal: Goal Reached
| 4 |
[
3,
8,
4,
76
] | 26 | [
"8/4=2",
"76+2=78",
"78/3=26"
] | Current State: 26:[3, 8, 4, 76], Operations: []
Exploring Operation: 8/4=2, Resulting Numbers: [3, 76, 2]
Generated Node #2: [3, 76, 2] from Operation: 8/4=2
Current State: 26:[3, 76, 2], Operations: ['8/4=2']
Exploring Operation: 76+2=78, Resulting Numbers: [3, 78]
Generated Node #3: [3, 78] from Operation: 76+2=78
Current State: 26:[3, 78], Operations: ['8/4=2', '76+2=78']
Exploring Operation: 78/3=26, Resulting Numbers: [26]
26,26 equal: Goal Reached
| 4 |
[
10,
45,
12,
2
] | 51 | [
"10-2=8",
"12*8=96",
"96-45=51"
] | Current State: 51:[10, 45, 12, 2], Operations: []
Exploring Operation: 10-2=8, Resulting Numbers: [45, 12, 8]
Generated Node #2: [45, 12, 8] from Operation: 10-2=8
Current State: 51:[45, 12, 8], Operations: ['10-2=8']
Exploring Operation: 12*8=96, Resulting Numbers: [45, 96]
Generated Node #3: [45, 96] from Operation: 12*8=96
Current State: 51:[45, 96], Operations: ['10-2=8', '12*8=96']
Exploring Operation: 96-45=51, Resulting Numbers: [51]
51,51 equal: Goal Reached
| 4 |
[
14,
71,
21,
23
] | 55 | [
"71-14=57",
"23-21=2",
"57-2=55"
] | Current State: 55:[14, 71, 21, 23], Operations: []
Exploring Operation: 71-14=57, Resulting Numbers: [21, 23, 57]
Generated Node #2: [21, 23, 57] from Operation: 71-14=57
Current State: 55:[21, 23, 57], Operations: ['71-14=57']
Exploring Operation: 23-21=2, Resulting Numbers: [57, 2]
Generated Node #3: [57, 2] from Operation: 23-21=2
Current State: 55:[57, 2], Operations: ['71-14=57', '23-21=2']
Exploring Operation: 57-2=55, Resulting Numbers: [55]
55,55 equal: Goal Reached
| 4 |
[
50,
36,
65,
5
] | 74 | [
"50-36=14",
"65-5=60",
"14+60=74"
] | Current State: 74:[50, 36, 65, 5], Operations: []
Exploring Operation: 50-36=14, Resulting Numbers: [65, 5, 14]
Generated Node #2: [65, 5, 14] from Operation: 50-36=14
Current State: 74:[65, 5, 14], Operations: ['50-36=14']
Exploring Operation: 65-5=60, Resulting Numbers: [14, 60]
Generated Node #3: [14, 60] from Operation: 65-5=60
Current State: 74:[14, 60], Operations: ['50-36=14', '65-5=60']
Exploring Operation: 14+60=74, Resulting Numbers: [74]
74,74 equal: Goal Reached
| 4 |
[
77,
76,
5,
92
] | 97 | [
"77-76=1",
"5+92=97",
"1*97=97"
] | Current State: 97:[77, 76, 5, 92], Operations: []
Exploring Operation: 77-76=1, Resulting Numbers: [5, 92, 1]
Generated Node #2: [5, 92, 1] from Operation: 77-76=1
Current State: 97:[5, 92, 1], Operations: ['77-76=1']
Exploring Operation: 5+92=97, Resulting Numbers: [1, 97]
Generated Node #3: [1, 97] from Operation: 5+92=97
Current State: 97:[1, 97], Operations: ['77-76=1', '5+92=97']
Exploring Operation: 1*97=97, Resulting Numbers: [97]
97,97 equal: Goal Reached
| 4 |
[
89,
84,
47,
17
] | 38 | [
"89-84=5",
"17*5=85",
"85-47=38"
] | Current State: 38:[89, 84, 47, 17], Operations: []
Exploring Operation: 89-84=5, Resulting Numbers: [47, 17, 5]
Generated Node #2: [47, 17, 5] from Operation: 89-84=5
Current State: 38:[47, 17, 5], Operations: ['89-84=5']
Exploring Operation: 17*5=85, Resulting Numbers: [47, 85]
Generated Node #3: [47, 85] from Operation: 17*5=85
Current State: 38:[47, 85], Operations: ['89-84=5', '17*5=85']
Exploring Operation: 85-47=38, Resulting Numbers: [38]
38,38 equal: Goal Reached
| 4 |
[
40,
34,
42,
64
] | 28 | [
"40-34=6",
"64-42=22",
"6+22=28"
] | Current State: 28:[40, 34, 42, 64], Operations: []
Exploring Operation: 40-34=6, Resulting Numbers: [42, 64, 6]
Generated Node #2: [42, 64, 6] from Operation: 40-34=6
Current State: 28:[42, 64, 6], Operations: ['40-34=6']
Exploring Operation: 64-42=22, Resulting Numbers: [6, 22]
Generated Node #3: [6, 22] from Operation: 64-42=22
Current State: 28:[6, 22], Operations: ['40-34=6', '64-42=22']
Exploring Operation: 6+22=28, Resulting Numbers: [28]
28,28 equal: Goal Reached
| 4 |
[
19,
68,
62,
99
] | 17 | [
"99-68=31",
"62/31=2",
"19-2=17"
] | Current State: 17:[19, 68, 62, 99], Operations: []
Exploring Operation: 99-68=31, Resulting Numbers: [19, 62, 31]
Generated Node #2: [19, 62, 31] from Operation: 99-68=31
Current State: 17:[19, 62, 31], Operations: ['99-68=31']
Exploring Operation: 62/31=2, Resulting Numbers: [19, 2]
Generated Node #3: [19, 2] from Operation: 62/31=2
Current State: 17:[19, 2], Operations: ['99-68=31', '62/31=2']
Exploring Operation: 19-2=17, Resulting Numbers: [17]
17,17 equal: Goal Reached
| 4 |
[
80,
28,
41,
5
] | 53 | [
"80/5=16",
"28+41=69",
"69-16=53"
] | Current State: 53:[80, 28, 41, 5], Operations: []
Exploring Operation: 80/5=16, Resulting Numbers: [28, 41, 16]
Generated Node #2: [28, 41, 16] from Operation: 80/5=16
Current State: 53:[28, 41, 16], Operations: ['80/5=16']
Exploring Operation: 28+41=69, Resulting Numbers: [16, 69]
Generated Node #3: [16, 69] from Operation: 28+41=69
Current State: 53:[16, 69], Operations: ['80/5=16', '28+41=69']
Exploring Operation: 69-16=53, Resulting Numbers: [53]
53,53 equal: Goal Reached
| 4 |
[
55,
49,
96,
29
] | 56 | [
"55+29=84",
"49*96=4704",
"4704/84=56"
] | Current State: 56:[55, 49, 96, 29], Operations: []
Exploring Operation: 55+29=84, Resulting Numbers: [49, 96, 84]
Generated Node #2: [49, 96, 84] from Operation: 55+29=84
Current State: 56:[49, 96, 84], Operations: ['55+29=84']
Exploring Operation: 49*96=4704, Resulting Numbers: [84, 4704]
Generated Node #3: [84, 4704] from Operation: 49*96=4704
Current State: 56:[84, 4704], Operations: ['55+29=84', '49*96=4704']
Exploring Operation: 4704/84=56, Resulting Numbers: [56]
56,56 equal: Goal Reached
| 4 |
[
54,
68,
15,
13
] | 16 | [
"68-54=14",
"15-13=2",
"14+2=16"
] | Current State: 16:[54, 68, 15, 13], Operations: []
Exploring Operation: 68-54=14, Resulting Numbers: [15, 13, 14]
Generated Node #2: [15, 13, 14] from Operation: 68-54=14
Current State: 16:[15, 13, 14], Operations: ['68-54=14']
Exploring Operation: 15-13=2, Resulting Numbers: [14, 2]
Generated Node #3: [14, 2] from Operation: 15-13=2
Current State: 16:[14, 2], Operations: ['68-54=14', '15-13=2']
Exploring Operation: 14+2=16, Resulting Numbers: [16]
16,16 equal: Goal Reached
| 4 |
[
4,
47,
21,
59
] | 81 | [
"47-4=43",
"59-21=38",
"43+38=81"
] | Current State: 81:[4, 47, 21, 59], Operations: []
Exploring Operation: 47-4=43, Resulting Numbers: [21, 59, 43]
Generated Node #2: [21, 59, 43] from Operation: 47-4=43
Current State: 81:[21, 59, 43], Operations: ['47-4=43']
Exploring Operation: 59-21=38, Resulting Numbers: [43, 38]
Generated Node #3: [43, 38] from Operation: 59-21=38
Current State: 81:[43, 38], Operations: ['47-4=43', '59-21=38']
Exploring Operation: 43+38=81, Resulting Numbers: [81]
81,81 equal: Goal Reached
| 4 |
[
5,
78,
3,
10
] | 30 | [
"5*78=390",
"3+10=13",
"390/13=30"
] | Current State: 30:[5, 78, 3, 10], Operations: []
Exploring Operation: 5*78=390, Resulting Numbers: [3, 10, 390]
Generated Node #2: [3, 10, 390] from Operation: 5*78=390
Current State: 30:[3, 10, 390], Operations: ['5*78=390']
Exploring Operation: 3+10=13, Resulting Numbers: [390, 13]
Generated Node #3: [390, 13] from Operation: 3+10=13
Current State: 30:[390, 13], Operations: ['5*78=390', '3+10=13']
Exploring Operation: 390/13=30, Resulting Numbers: [30]
30,30 equal: Goal Reached
| 4 |
[
56,
42,
67,
81
] | 38 | [
"81-67=14",
"56/14=4",
"42-4=38"
] | Current State: 38:[56, 42, 67, 81], Operations: []
Exploring Operation: 81-67=14, Resulting Numbers: [56, 42, 14]
Generated Node #2: [56, 42, 14] from Operation: 81-67=14
Current State: 38:[56, 42, 14], Operations: ['81-67=14']
Exploring Operation: 56/14=4, Resulting Numbers: [42, 4]
Generated Node #3: [42, 4] from Operation: 56/14=4
Current State: 38:[42, 4], Operations: ['81-67=14', '56/14=4']
Exploring Operation: 42-4=38, Resulting Numbers: [38]
38,38 equal: Goal Reached
| 4 |
[
92,
46,
4,
14
] | 31 | [
"92+46=138",
"138-14=124",
"124/4=31"
] | Current State: 31:[92, 46, 4, 14], Operations: []
Exploring Operation: 92+46=138, Resulting Numbers: [4, 14, 138]
Generated Node #2: [4, 14, 138] from Operation: 92+46=138
Current State: 31:[4, 14, 138], Operations: ['92+46=138']
Exploring Operation: 138-14=124, Resulting Numbers: [4, 124]
Generated Node #3: [4, 124] from Operation: 138-14=124
Current State: 31:[4, 124], Operations: ['92+46=138', '138-14=124']
Exploring Operation: 124/4=31, Resulting Numbers: [31]
31,31 equal: Goal Reached
| 4 |
[
40,
10,
84,
76
] | 22 | [
"40-10=30",
"84-76=8",
"30-8=22"
] | Current State: 22:[40, 10, 84, 76], Operations: []
Exploring Operation: 40-10=30, Resulting Numbers: [84, 76, 30]
Generated Node #2: [84, 76, 30] from Operation: 40-10=30
Current State: 22:[84, 76, 30], Operations: ['40-10=30']
Exploring Operation: 84-76=8, Resulting Numbers: [30, 8]
Generated Node #3: [30, 8] from Operation: 84-76=8
Current State: 22:[30, 8], Operations: ['40-10=30', '84-76=8']
Exploring Operation: 30-8=22, Resulting Numbers: [22]
22,22 equal: Goal Reached
| 4 |
[
28,
58,
60,
72
] | 62 | [
"72-58=14",
"28/14=2",
"60+2=62"
] | Current State: 62:[28, 58, 60, 72], Operations: []
Exploring Operation: 72-58=14, Resulting Numbers: [28, 60, 14]
Generated Node #2: [28, 60, 14] from Operation: 72-58=14
Current State: 62:[28, 60, 14], Operations: ['72-58=14']
Exploring Operation: 28/14=2, Resulting Numbers: [60, 2]
Generated Node #3: [60, 2] from Operation: 28/14=2
Current State: 62:[60, 2], Operations: ['72-58=14', '28/14=2']
Exploring Operation: 60+2=62, Resulting Numbers: [62]
62,62 equal: Goal Reached
| 4 |
[
10,
29,
15,
13
] | 42 | [
"13-10=3",
"29-15=14",
"3*14=42"
] | Current State: 42:[10, 29, 15, 13], Operations: []
Exploring Operation: 13-10=3, Resulting Numbers: [29, 15, 3]
Generated Node #2: [29, 15, 3] from Operation: 13-10=3
Current State: 42:[29, 15, 3], Operations: ['13-10=3']
Exploring Operation: 29-15=14, Resulting Numbers: [3, 14]
Generated Node #3: [3, 14] from Operation: 29-15=14
Current State: 42:[3, 14], Operations: ['13-10=3', '29-15=14']
Exploring Operation: 3*14=42, Resulting Numbers: [42]
42,42 equal: Goal Reached
| 4 |
[
83,
8,
65,
62
] | 72 | [
"83-8=75",
"65-62=3",
"75-3=72"
] | Current State: 72:[83, 8, 65, 62], Operations: []
Exploring Operation: 83-8=75, Resulting Numbers: [65, 62, 75]
Generated Node #2: [65, 62, 75] from Operation: 83-8=75
Current State: 72:[65, 62, 75], Operations: ['83-8=75']
Exploring Operation: 65-62=3, Resulting Numbers: [75, 3]
Generated Node #3: [75, 3] from Operation: 65-62=3
Current State: 72:[75, 3], Operations: ['83-8=75', '65-62=3']
Exploring Operation: 75-3=72, Resulting Numbers: [72]
72,72 equal: Goal Reached
| 4 |
[
62,
5,
58,
30
] | 30 | [
"62-5=57",
"58-57=1",
"30*1=30"
] | Current State: 30:[62, 5, 58, 30], Operations: []
Exploring Operation: 62-5=57, Resulting Numbers: [58, 30, 57]
Generated Node #2: [58, 30, 57] from Operation: 62-5=57
Current State: 30:[58, 30, 57], Operations: ['62-5=57']
Exploring Operation: 58-57=1, Resulting Numbers: [30, 1]
Generated Node #3: [30, 1] from Operation: 58-57=1
Current State: 30:[30, 1], Operations: ['62-5=57', '58-57=1']
Exploring Operation: 30*1=30, Resulting Numbers: [30]
30,30 equal: Goal Reached
| 4 |
[
74,
82,
77,
55
] | 81 | [
"77-74=3",
"82-55=27",
"3*27=81"
] | Current State: 81:[74, 82, 77, 55], Operations: []
Exploring Operation: 77-74=3, Resulting Numbers: [82, 55, 3]
Generated Node #2: [82, 55, 3] from Operation: 77-74=3
Current State: 81:[82, 55, 3], Operations: ['77-74=3']
Exploring Operation: 82-55=27, Resulting Numbers: [3, 27]
Generated Node #3: [3, 27] from Operation: 82-55=27
Current State: 81:[3, 27], Operations: ['77-74=3', '82-55=27']
Exploring Operation: 3*27=81, Resulting Numbers: [81]
81,81 equal: Goal Reached
| 4 |
[
71,
59,
47,
57
] | 23 | [
"59-57=2",
"47*2=94",
"94-71=23"
] | Current State: 23:[71, 59, 47, 57], Operations: []
Exploring Operation: 59-57=2, Resulting Numbers: [71, 47, 2]
Generated Node #2: [71, 47, 2] from Operation: 59-57=2
Current State: 23:[71, 47, 2], Operations: ['59-57=2']
Exploring Operation: 47*2=94, Resulting Numbers: [71, 94]
Generated Node #3: [71, 94] from Operation: 47*2=94
Current State: 23:[71, 94], Operations: ['59-57=2', '47*2=94']
Exploring Operation: 94-71=23, Resulting Numbers: [23]
23,23 equal: Goal Reached
| 4 |
[
4,
51,
5,
58
] | 33 | [
"58-51=7",
"4*7=28",
"5+28=33"
] | Current State: 33:[4, 51, 5, 58], Operations: []
Exploring Operation: 58-51=7, Resulting Numbers: [4, 5, 7]
Generated Node #2: [4, 5, 7] from Operation: 58-51=7
Current State: 33:[4, 5, 7], Operations: ['58-51=7']
Exploring Operation: 4*7=28, Resulting Numbers: [5, 28]
Generated Node #3: [5, 28] from Operation: 4*7=28
Current State: 33:[5, 28], Operations: ['58-51=7', '4*7=28']
Exploring Operation: 5+28=33, Resulting Numbers: [33]
33,33 equal: Goal Reached
| 4 |
[
35,
34,
9,
9
] | 87 | [
"35+34=69",
"9+9=18",
"69+18=87"
] | Current State: 87:[35, 34, 9, 9], Operations: []
Exploring Operation: 35+34=69, Resulting Numbers: [9, 9, 69]
Generated Node #2: [9, 9, 69] from Operation: 35+34=69
Current State: 87:[9, 9, 69], Operations: ['35+34=69']
Exploring Operation: 9+9=18, Resulting Numbers: [69, 18]
Generated Node #3: [69, 18] from Operation: 9+9=18
Current State: 87:[69, 18], Operations: ['35+34=69', '9+9=18']
Exploring Operation: 69+18=87, Resulting Numbers: [87]
87,87 equal: Goal Reached
| 4 |
[
34,
1,
47,
30
] | 52 | [
"34+1=35",
"47-30=17",
"35+17=52"
] | Current State: 52:[34, 1, 47, 30], Operations: []
Exploring Operation: 34+1=35, Resulting Numbers: [47, 30, 35]
Generated Node #2: [47, 30, 35] from Operation: 34+1=35
Current State: 52:[47, 30, 35], Operations: ['34+1=35']
Exploring Operation: 47-30=17, Resulting Numbers: [35, 17]
Generated Node #3: [35, 17] from Operation: 47-30=17
Current State: 52:[35, 17], Operations: ['34+1=35', '47-30=17']
Exploring Operation: 35+17=52, Resulting Numbers: [52]
52,52 equal: Goal Reached
| 4 |
[
36,
31,
47,
49
] | 53 | [
"36*47=1692",
"1692-49=1643",
"1643/31=53"
] | Current State: 53:[36, 31, 47, 49], Operations: []
Exploring Operation: 36*47=1692, Resulting Numbers: [31, 49, 1692]
Generated Node #2: [31, 49, 1692] from Operation: 36*47=1692
Current State: 53:[31, 49, 1692], Operations: ['36*47=1692']
Exploring Operation: 1692-49=1643, Resulting Numbers: [31, 1643]
Generated Node #3: [31, 1643] from Operation: 1692-49=1643
Current State: 53:[31, 1643], Operations: ['36*47=1692', '1692-49=1643']
Exploring Operation: 1643/31=53, Resulting Numbers: [53]
53,53 equal: Goal Reached
| 4 |
[
55,
4,
27,
92
] | 71 | [
"92-55=37",
"4*27=108",
"108-37=71"
] | Current State: 71:[55, 4, 27, 92], Operations: []
Exploring Operation: 92-55=37, Resulting Numbers: [4, 27, 37]
Generated Node #2: [4, 27, 37] from Operation: 92-55=37
Current State: 71:[4, 27, 37], Operations: ['92-55=37']
Exploring Operation: 4*27=108, Resulting Numbers: [37, 108]
Generated Node #3: [37, 108] from Operation: 4*27=108
Current State: 71:[37, 108], Operations: ['92-55=37', '4*27=108']
Exploring Operation: 108-37=71, Resulting Numbers: [71]
71,71 equal: Goal Reached
| 4 |
[
97,
28,
5,
43
] | 10 | [
"97+43=140",
"140/28=5",
"5+5=10"
] | Current State: 10:[97, 28, 5, 43], Operations: []
Exploring Operation: 97+43=140, Resulting Numbers: [28, 5, 140]
Generated Node #2: [28, 5, 140] from Operation: 97+43=140
Current State: 10:[28, 5, 140], Operations: ['97+43=140']
Exploring Operation: 140/28=5, Resulting Numbers: [5, 5]
Generated Node #3: [5, 5] from Operation: 140/28=5
Current State: 10:[5, 5], Operations: ['97+43=140', '140/28=5']
Exploring Operation: 5+5=10, Resulting Numbers: [10]
10,10 equal: Goal Reached
| 4 |
[
39,
3,
2,
81
] | 28 | [
"81-39=42",
"42/3=14",
"2*14=28"
] | Current State: 28:[39, 3, 2, 81], Operations: []
Exploring Operation: 81-39=42, Resulting Numbers: [3, 2, 42]
Generated Node #2: [3, 2, 42] from Operation: 81-39=42
Current State: 28:[3, 2, 42], Operations: ['81-39=42']
Exploring Operation: 42/3=14, Resulting Numbers: [2, 14]
Generated Node #3: [2, 14] from Operation: 42/3=14
Current State: 28:[2, 14], Operations: ['81-39=42', '42/3=14']
Exploring Operation: 2*14=28, Resulting Numbers: [28]
28,28 equal: Goal Reached
| 4 |
[
3,
91,
30,
16
] | 37 | [
"16-3=13",
"91/13=7",
"30+7=37"
] | Current State: 37:[3, 91, 30, 16], Operations: []
Exploring Operation: 16-3=13, Resulting Numbers: [91, 30, 13]
Generated Node #2: [91, 30, 13] from Operation: 16-3=13
Current State: 37:[91, 30, 13], Operations: ['16-3=13']
Exploring Operation: 91/13=7, Resulting Numbers: [30, 7]
Generated Node #3: [30, 7] from Operation: 91/13=7
Current State: 37:[30, 7], Operations: ['16-3=13', '91/13=7']
Exploring Operation: 30+7=37, Resulting Numbers: [37]
37,37 equal: Goal Reached
| 4 |
[
54,
11,
59,
82
] | 66 | [
"54-11=43",
"82-59=23",
"43+23=66"
] | Current State: 66:[54, 11, 59, 82], Operations: []
Exploring Operation: 54-11=43, Resulting Numbers: [59, 82, 43]
Generated Node #2: [59, 82, 43] from Operation: 54-11=43
Current State: 66:[59, 82, 43], Operations: ['54-11=43']
Exploring Operation: 82-59=23, Resulting Numbers: [43, 23]
Generated Node #3: [43, 23] from Operation: 82-59=23
Current State: 66:[43, 23], Operations: ['54-11=43', '82-59=23']
Exploring Operation: 43+23=66, Resulting Numbers: [66]
66,66 equal: Goal Reached
| 4 |
[
17,
34,
27,
83
] | 28 | [
"34/17=2",
"83-27=56",
"56/2=28"
] | Current State: 28:[17, 34, 27, 83], Operations: []
Exploring Operation: 34/17=2, Resulting Numbers: [27, 83, 2]
Generated Node #2: [27, 83, 2] from Operation: 34/17=2
Current State: 28:[27, 83, 2], Operations: ['34/17=2']
Exploring Operation: 83-27=56, Resulting Numbers: [2, 56]
Generated Node #3: [2, 56] from Operation: 83-27=56
Current State: 28:[2, 56], Operations: ['34/17=2', '83-27=56']
Exploring Operation: 56/2=28, Resulting Numbers: [28]
28,28 equal: Goal Reached
| 4 |
[
81,
14,
25,
6
] | 48 | [
"81-14=67",
"25-6=19",
"67-19=48"
] | Current State: 48:[81, 14, 25, 6], Operations: []
Exploring Operation: 81-14=67, Resulting Numbers: [25, 6, 67]
Generated Node #2: [25, 6, 67] from Operation: 81-14=67
Current State: 48:[25, 6, 67], Operations: ['81-14=67']
Exploring Operation: 25-6=19, Resulting Numbers: [67, 19]
Generated Node #3: [67, 19] from Operation: 25-6=19
Current State: 48:[67, 19], Operations: ['81-14=67', '25-6=19']
Exploring Operation: 67-19=48, Resulting Numbers: [48]
48,48 equal: Goal Reached
| 4 |
[
24,
54,
2,
3
] | 100 | [
"24/3=8",
"54*2=108",
"108-8=100"
] | Current State: 100:[24, 54, 2, 3], Operations: []
Exploring Operation: 24/3=8, Resulting Numbers: [54, 2, 8]
Generated Node #2: [54, 2, 8] from Operation: 24/3=8
Current State: 100:[54, 2, 8], Operations: ['24/3=8']
Exploring Operation: 54*2=108, Resulting Numbers: [8, 108]
Generated Node #3: [8, 108] from Operation: 54*2=108
Current State: 100:[8, 108], Operations: ['24/3=8', '54*2=108']
Exploring Operation: 108-8=100, Resulting Numbers: [100]
100,100 equal: Goal Reached
| 4 |
[
36,
3,
22,
53
] | 70 | [
"36+3=39",
"53-22=31",
"39+31=70"
] | Current State: 70:[36, 3, 22, 53], Operations: []
Exploring Operation: 36+3=39, Resulting Numbers: [22, 53, 39]
Generated Node #2: [22, 53, 39] from Operation: 36+3=39
Current State: 70:[22, 53, 39], Operations: ['36+3=39']
Exploring Operation: 53-22=31, Resulting Numbers: [39, 31]
Generated Node #3: [39, 31] from Operation: 53-22=31
Current State: 70:[39, 31], Operations: ['36+3=39', '53-22=31']
Exploring Operation: 39+31=70, Resulting Numbers: [70]
70,70 equal: Goal Reached
| 4 |
[
46,
6,
91,
47
] | 86 | [
"46+6=52",
"91+47=138",
"138-52=86"
] | Current State: 86:[46, 6, 91, 47], Operations: []
Exploring Operation: 46+6=52, Resulting Numbers: [91, 47, 52]
Generated Node #2: [91, 47, 52] from Operation: 46+6=52
Current State: 86:[91, 47, 52], Operations: ['46+6=52']
Exploring Operation: 91+47=138, Resulting Numbers: [52, 138]
Generated Node #3: [52, 138] from Operation: 91+47=138
Current State: 86:[52, 138], Operations: ['46+6=52', '91+47=138']
Exploring Operation: 138-52=86, Resulting Numbers: [86]
86,86 equal: Goal Reached
| 4 |
[
94,
10,
69,
80
] | 93 | [
"94+10=104",
"80-69=11",
"104-11=93"
] | Current State: 93:[94, 10, 69, 80], Operations: []
Exploring Operation: 94+10=104, Resulting Numbers: [69, 80, 104]
Generated Node #2: [69, 80, 104] from Operation: 94+10=104
Current State: 93:[69, 80, 104], Operations: ['94+10=104']
Exploring Operation: 80-69=11, Resulting Numbers: [104, 11]
Generated Node #3: [104, 11] from Operation: 80-69=11
Current State: 93:[104, 11], Operations: ['94+10=104', '80-69=11']
Exploring Operation: 104-11=93, Resulting Numbers: [93]
93,93 equal: Goal Reached
| 4 |
[
96,
63,
59,
63
] | 29 | [
"96-63=33",
"63-59=4",
"33-4=29"
] | Current State: 29:[96, 63, 59, 63], Operations: []
Exploring Operation: 96-63=33, Resulting Numbers: [59, 33]
Generated Node #2: [59, 33] from Operation: 96-63=33
Current State: 29:[59, 33], Operations: ['96-63=33']
Exploring Operation: 63-59=4, Resulting Numbers: [33, 4]
Generated Node #3: [33, 4] from Operation: 63-59=4
Current State: 29:[33, 4], Operations: ['96-63=33', '63-59=4']
Exploring Operation: 33-4=29, Resulting Numbers: [29]
29,29 equal: Goal Reached
| 4 |
[
24,
93,
57,
64
] | 96 | [
"93-57=36",
"64*36=2304",
"2304/24=96"
] | Current State: 96:[24, 93, 57, 64], Operations: []
Exploring Operation: 93-57=36, Resulting Numbers: [24, 64, 36]
Generated Node #2: [24, 64, 36] from Operation: 93-57=36
Current State: 96:[24, 64, 36], Operations: ['93-57=36']
Exploring Operation: 64*36=2304, Resulting Numbers: [24, 2304]
Generated Node #3: [24, 2304] from Operation: 64*36=2304
Current State: 96:[24, 2304], Operations: ['93-57=36', '64*36=2304']
Exploring Operation: 2304/24=96, Resulting Numbers: [96]
96,96 equal: Goal Reached
| 4 |
[
85,
84,
76,
40
] | 37 | [
"85-84=1",
"76-40=36",
"1+36=37"
] | Current State: 37:[85, 84, 76, 40], Operations: []
Exploring Operation: 85-84=1, Resulting Numbers: [76, 40, 1]
Generated Node #2: [76, 40, 1] from Operation: 85-84=1
Current State: 37:[76, 40, 1], Operations: ['85-84=1']
Exploring Operation: 76-40=36, Resulting Numbers: [1, 36]
Generated Node #3: [1, 36] from Operation: 76-40=36
Current State: 37:[1, 36], Operations: ['85-84=1', '76-40=36']
Exploring Operation: 1+36=37, Resulting Numbers: [37]
37,37 equal: Goal Reached
| 4 |
[
8,
44,
74,
45
] | 88 | [
"45-8=37",
"44*74=3256",
"3256/37=88"
] | Current State: 88:[8, 44, 74, 45], Operations: []
Exploring Operation: 45-8=37, Resulting Numbers: [44, 74, 37]
Generated Node #2: [44, 74, 37] from Operation: 45-8=37
Current State: 88:[44, 74, 37], Operations: ['45-8=37']
Exploring Operation: 44*74=3256, Resulting Numbers: [37, 3256]
Generated Node #3: [37, 3256] from Operation: 44*74=3256
Current State: 88:[37, 3256], Operations: ['45-8=37', '44*74=3256']
Exploring Operation: 3256/37=88, Resulting Numbers: [88]
88,88 equal: Goal Reached
| 4 |
[
63,
85,
64,
55
] | 30 | [
"64-63=1",
"85-55=30",
"1*30=30"
] | Current State: 30:[63, 85, 64, 55], Operations: []
Exploring Operation: 64-63=1, Resulting Numbers: [85, 55, 1]
Generated Node #2: [85, 55, 1] from Operation: 64-63=1
Current State: 30:[85, 55, 1], Operations: ['64-63=1']
Exploring Operation: 85-55=30, Resulting Numbers: [1, 30]
Generated Node #3: [1, 30] from Operation: 85-55=30
Current State: 30:[1, 30], Operations: ['64-63=1', '85-55=30']
Exploring Operation: 1*30=30, Resulting Numbers: [30]
30,30 equal: Goal Reached
| 4 |
[
77,
80,
74,
60
] | 42 | [
"80-77=3",
"74-60=14",
"3*14=42"
] | Current State: 42:[77, 80, 74, 60], Operations: []
Exploring Operation: 80-77=3, Resulting Numbers: [74, 60, 3]
Generated Node #2: [74, 60, 3] from Operation: 80-77=3
Current State: 42:[74, 60, 3], Operations: ['80-77=3']
Exploring Operation: 74-60=14, Resulting Numbers: [3, 14]
Generated Node #3: [3, 14] from Operation: 74-60=14
Current State: 42:[3, 14], Operations: ['80-77=3', '74-60=14']
Exploring Operation: 3*14=42, Resulting Numbers: [42]
42,42 equal: Goal Reached
| 4 |
[
62,
64,
35,
56
] | 22 | [
"64*35=2240",
"2240/56=40",
"62-40=22"
] | Current State: 22:[62, 64, 35, 56], Operations: []
Exploring Operation: 64*35=2240, Resulting Numbers: [62, 56, 2240]
Generated Node #2: [62, 56, 2240] from Operation: 64*35=2240
Current State: 22:[62, 56, 2240], Operations: ['64*35=2240']
Exploring Operation: 2240/56=40, Resulting Numbers: [62, 40]
Generated Node #3: [62, 40] from Operation: 2240/56=40
Current State: 22:[62, 40], Operations: ['64*35=2240', '2240/56=40']
Exploring Operation: 62-40=22, Resulting Numbers: [22]
22,22 equal: Goal Reached
| 4 |
[
22,
9,
17,
29
] | 90 | [
"22+17=39",
"39-29=10",
"9*10=90"
] | Current State: 90:[22, 9, 17, 29], Operations: []
Exploring Operation: 22+17=39, Resulting Numbers: [9, 29, 39]
Generated Node #2: [9, 29, 39] from Operation: 22+17=39
Current State: 90:[9, 29, 39], Operations: ['22+17=39']
Exploring Operation: 39-29=10, Resulting Numbers: [9, 10]
Generated Node #3: [9, 10] from Operation: 39-29=10
Current State: 90:[9, 10], Operations: ['22+17=39', '39-29=10']
Exploring Operation: 9*10=90, Resulting Numbers: [90]
90,90 equal: Goal Reached
| 4 |
[
38,
49,
58,
84
] | 55 | [
"38+49=87",
"58+84=142",
"142-87=55"
] | Current State: 55:[38, 49, 58, 84], Operations: []
Exploring Operation: 38+49=87, Resulting Numbers: [58, 84, 87]
Generated Node #2: [58, 84, 87] from Operation: 38+49=87
Current State: 55:[58, 84, 87], Operations: ['38+49=87']
Exploring Operation: 58+84=142, Resulting Numbers: [87, 142]
Generated Node #3: [87, 142] from Operation: 58+84=142
Current State: 55:[87, 142], Operations: ['38+49=87', '58+84=142']
Exploring Operation: 142-87=55, Resulting Numbers: [55]
55,55 equal: Goal Reached
| 4 |
[
53,
56,
14,
23
] | 26 | [
"53-23=30",
"56/14=4",
"30-4=26"
] | Current State: 26:[53, 56, 14, 23], Operations: []
Exploring Operation: 53-23=30, Resulting Numbers: [56, 14, 30]
Generated Node #2: [56, 14, 30] from Operation: 53-23=30
Current State: 26:[56, 14, 30], Operations: ['53-23=30']
Exploring Operation: 56/14=4, Resulting Numbers: [30, 4]
Generated Node #3: [30, 4] from Operation: 56/14=4
Current State: 26:[30, 4], Operations: ['53-23=30', '56/14=4']
Exploring Operation: 30-4=26, Resulting Numbers: [26]
26,26 equal: Goal Reached
| 4 |
[
98,
91,
4,
66
] | 63 | [
"98-91=7",
"4+66=70",
"70-7=63"
] | Current State: 63:[98, 91, 4, 66], Operations: []
Exploring Operation: 98-91=7, Resulting Numbers: [4, 66, 7]
Generated Node #2: [4, 66, 7] from Operation: 98-91=7
Current State: 63:[4, 66, 7], Operations: ['98-91=7']
Exploring Operation: 4+66=70, Resulting Numbers: [7, 70]
Generated Node #3: [7, 70] from Operation: 4+66=70
Current State: 63:[7, 70], Operations: ['98-91=7', '4+66=70']
Exploring Operation: 70-7=63, Resulting Numbers: [63]
63,63 equal: Goal Reached
| 4 |
[
18,
76,
26,
27
] | 59 | [
"76-18=58",
"27-26=1",
"58+1=59"
] | Current State: 59:[18, 76, 26, 27], Operations: []
Exploring Operation: 76-18=58, Resulting Numbers: [26, 27, 58]
Generated Node #2: [26, 27, 58] from Operation: 76-18=58
Current State: 59:[26, 27, 58], Operations: ['76-18=58']
Exploring Operation: 27-26=1, Resulting Numbers: [58, 1]
Generated Node #3: [58, 1] from Operation: 27-26=1
Current State: 59:[58, 1], Operations: ['76-18=58', '27-26=1']
Exploring Operation: 58+1=59, Resulting Numbers: [59]
59,59 equal: Goal Reached
| 4 |
[
41,
29,
38,
87
] | 82 | [
"41+38=79",
"87/29=3",
"79+3=82"
] | Current State: 82:[41, 29, 38, 87], Operations: []
Exploring Operation: 41+38=79, Resulting Numbers: [29, 87, 79]
Generated Node #2: [29, 87, 79] from Operation: 41+38=79
Current State: 82:[29, 87, 79], Operations: ['41+38=79']
Exploring Operation: 87/29=3, Resulting Numbers: [79, 3]
Generated Node #3: [79, 3] from Operation: 87/29=3
Current State: 82:[79, 3], Operations: ['41+38=79', '87/29=3']
Exploring Operation: 79+3=82, Resulting Numbers: [82]
82,82 equal: Goal Reached
| 4 |
[
54,
63,
73,
17
] | 81 | [
"63-54=9",
"73+17=90",
"90-9=81"
] | Current State: 81:[54, 63, 73, 17], Operations: []
Exploring Operation: 63-54=9, Resulting Numbers: [73, 17, 9]
Generated Node #2: [73, 17, 9] from Operation: 63-54=9
Current State: 81:[73, 17, 9], Operations: ['63-54=9']
Exploring Operation: 73+17=90, Resulting Numbers: [9, 90]
Generated Node #3: [9, 90] from Operation: 73+17=90
Current State: 81:[9, 90], Operations: ['63-54=9', '73+17=90']
Exploring Operation: 90-9=81, Resulting Numbers: [81]
81,81 equal: Goal Reached
| 4 |
[
53,
89,
41,
75
] | 70 | [
"89-53=36",
"75-41=34",
"36+34=70"
] | Current State: 70:[53, 89, 41, 75], Operations: []
Exploring Operation: 89-53=36, Resulting Numbers: [41, 75, 36]
Generated Node #2: [41, 75, 36] from Operation: 89-53=36
Current State: 70:[41, 75, 36], Operations: ['89-53=36']
Exploring Operation: 75-41=34, Resulting Numbers: [36, 34]
Generated Node #3: [36, 34] from Operation: 75-41=34
Current State: 70:[36, 34], Operations: ['89-53=36', '75-41=34']
Exploring Operation: 36+34=70, Resulting Numbers: [70]
70,70 equal: Goal Reached
| 4 |
[
90,
15,
15,
63
] | 21 | [
"15+15=30",
"90/30=3",
"63/3=21"
] | Current State: 21:[90, 15, 15, 63], Operations: []
Exploring Operation: 15+15=30, Resulting Numbers: [90, 63, 30]
Generated Node #2: [90, 63, 30] from Operation: 15+15=30
Current State: 21:[90, 63, 30], Operations: ['15+15=30']
Exploring Operation: 90/30=3, Resulting Numbers: [63, 3]
Generated Node #3: [63, 3] from Operation: 90/30=3
Current State: 21:[63, 3], Operations: ['15+15=30', '90/30=3']
Exploring Operation: 63/3=21, Resulting Numbers: [21]
21,21 equal: Goal Reached
| 4 |
[
59,
43,
14,
3
] | 47 | [
"59-3=56",
"56/14=4",
"43+4=47"
] | Current State: 47:[59, 43, 14, 3], Operations: []
Exploring Operation: 59-3=56, Resulting Numbers: [43, 14, 56]
Generated Node #2: [43, 14, 56] from Operation: 59-3=56
Current State: 47:[43, 14, 56], Operations: ['59-3=56']
Exploring Operation: 56/14=4, Resulting Numbers: [43, 4]
Generated Node #3: [43, 4] from Operation: 56/14=4
Current State: 47:[43, 4], Operations: ['59-3=56', '56/14=4']
Exploring Operation: 43+4=47, Resulting Numbers: [47]
47,47 equal: Goal Reached
| 4 |
[
54,
25,
78,
31
] | 76 | [
"54-25=29",
"78-31=47",
"29+47=76"
] | Current State: 76:[54, 25, 78, 31], Operations: []
Exploring Operation: 54-25=29, Resulting Numbers: [78, 31, 29]
Generated Node #2: [78, 31, 29] from Operation: 54-25=29
Current State: 76:[78, 31, 29], Operations: ['54-25=29']
Exploring Operation: 78-31=47, Resulting Numbers: [29, 47]
Generated Node #3: [29, 47] from Operation: 78-31=47
Current State: 76:[29, 47], Operations: ['54-25=29', '78-31=47']
Exploring Operation: 29+47=76, Resulting Numbers: [76]
76,76 equal: Goal Reached
| 4 |
[
27,
48,
10,
2
] | 92 | [
"27*2=54",
"48-10=38",
"54+38=92"
] | Current State: 92:[27, 48, 10, 2], Operations: []
Exploring Operation: 27*2=54, Resulting Numbers: [48, 10, 54]
Generated Node #2: [48, 10, 54] from Operation: 27*2=54
Current State: 92:[48, 10, 54], Operations: ['27*2=54']
Exploring Operation: 48-10=38, Resulting Numbers: [54, 38]
Generated Node #3: [54, 38] from Operation: 48-10=38
Current State: 92:[54, 38], Operations: ['27*2=54', '48-10=38']
Exploring Operation: 54+38=92, Resulting Numbers: [92]
92,92 equal: Goal Reached
| 4 |
[
99,
96,
65,
77
] | 53 | [
"99+96=195",
"65+77=142",
"195-142=53"
] | Current State: 53:[99, 96, 65, 77], Operations: []
Exploring Operation: 99+96=195, Resulting Numbers: [65, 77, 195]
Generated Node #2: [65, 77, 195] from Operation: 99+96=195
Current State: 53:[65, 77, 195], Operations: ['99+96=195']
Exploring Operation: 65+77=142, Resulting Numbers: [195, 142]
Generated Node #3: [195, 142] from Operation: 65+77=142
Current State: 53:[195, 142], Operations: ['99+96=195', '65+77=142']
Exploring Operation: 195-142=53, Resulting Numbers: [53]
53,53 equal: Goal Reached
| 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.