nums listlengths 4 4 | target int64 10 100 | solution listlengths 3 3 | optimal_path stringlengths 282 529 | start_size int64 4 4 |
|---|---|---|---|---|
[
13,
99,
88,
24
] | 48 | [
"13+99=112",
"88-24=64",
"112-64=48"
] | Current State: 48:[13, 99, 88, 24], Operations: []
Exploring Operation: 13+99=112, Resulting Numbers: [88, 24, 112]
Generated Node #2: [88, 24, 112] from Operation: 13+99=112
Current State: 48:[88, 24, 112], Operations: ['13+99=112']
Exploring Operation: 88-24=64, Resulting Numbers: [112, 64]
Generated Node #3: [112, 64] from Operation: 88-24=64
Current State: 48:[112, 64], Operations: ['13+99=112', '88-24=64']
Exploring Operation: 112-64=48, Resulting Numbers: [48]
48,48 equal: Goal Reached
| 4 |
[
54,
23,
23,
7
] | 56 | [
"54-23=31",
"31-23=8",
"7*8=56"
] | Current State: 56:[54, 23, 23, 7], Operations: []
Exploring Operation: 54-23=31, Resulting Numbers: [7, 31]
Generated Node #2: [7, 31] from Operation: 54-23=31
Current State: 56:[7, 31], Operations: ['54-23=31']
Exploring Operation: 31-23=8, Resulting Numbers: [7, 8]
Generated Node #3: [7, 8] from Operation: 31-23=8
Current State: 56:[7, 8], Operations: ['54-23=31', '31-23=8']
Exploring Operation: 7*8=56, Resulting Numbers: [56]
56,56 equal: Goal Reached
| 4 |
[
72,
38,
50,
2
] | 85 | [
"72+38=110",
"50/2=25",
"110-25=85"
] | Current State: 85:[72, 38, 50, 2], Operations: []
Exploring Operation: 72+38=110, Resulting Numbers: [50, 2, 110]
Generated Node #2: [50, 2, 110] from Operation: 72+38=110
Current State: 85:[50, 2, 110], Operations: ['72+38=110']
Exploring Operation: 50/2=25, Resulting Numbers: [110, 25]
Generated Node #3: [110, 25] from Operation: 50/2=25
Current State: 85:[110, 25], Operations: ['72+38=110', '50/2=25']
Exploring Operation: 110-25=85, Resulting Numbers: [85]
85,85 equal: Goal Reached
| 4 |
[
8,
4,
35,
92
] | 22 | [
"8/4=2",
"35*2=70",
"92-70=22"
] | Current State: 22:[8, 4, 35, 92], Operations: []
Exploring Operation: 8/4=2, Resulting Numbers: [35, 92, 2]
Generated Node #2: [35, 92, 2] from Operation: 8/4=2
Current State: 22:[35, 92, 2], Operations: ['8/4=2']
Exploring Operation: 35*2=70, Resulting Numbers: [92, 70]
Generated Node #3: [92, 70] from Operation: 35*2=70
Current State: 22:[92, 70], Operations: ['8/4=2', '35*2=70']
Exploring Operation: 92-70=22, Resulting Numbers: [22]
22,22 equal: Goal Reached
| 4 |
[
78,
69,
86,
2
] | 85 | [
"86-78=8",
"2*8=16",
"69+16=85"
] | Current State: 85:[78, 69, 86, 2], Operations: []
Exploring Operation: 86-78=8, Resulting Numbers: [69, 2, 8]
Generated Node #2: [69, 2, 8] from Operation: 86-78=8
Current State: 85:[69, 2, 8], Operations: ['86-78=8']
Exploring Operation: 2*8=16, Resulting Numbers: [69, 16]
Generated Node #3: [69, 16] from Operation: 2*8=16
Current State: 85:[69, 16], Operations: ['86-78=8', '2*8=16']
Exploring Operation: 69+16=85, Resulting Numbers: [85]
85,85 equal: Goal Reached
| 4 |
[
45,
38,
26,
58
] | 39 | [
"45-38=7",
"58-26=32",
"7+32=39"
] | Current State: 39:[45, 38, 26, 58], Operations: []
Exploring Operation: 45-38=7, Resulting Numbers: [26, 58, 7]
Generated Node #2: [26, 58, 7] from Operation: 45-38=7
Current State: 39:[26, 58, 7], Operations: ['45-38=7']
Exploring Operation: 58-26=32, Resulting Numbers: [7, 32]
Generated Node #3: [7, 32] from Operation: 58-26=32
Current State: 39:[7, 32], Operations: ['45-38=7', '58-26=32']
Exploring Operation: 7+32=39, Resulting Numbers: [39]
39,39 equal: Goal Reached
| 4 |
[
99,
13,
20,
76
] | 39 | [
"99-20=79",
"79-76=3",
"13*3=39"
] | Current State: 39:[99, 13, 20, 76], Operations: []
Exploring Operation: 99-20=79, Resulting Numbers: [13, 76, 79]
Generated Node #2: [13, 76, 79] from Operation: 99-20=79
Current State: 39:[13, 76, 79], Operations: ['99-20=79']
Exploring Operation: 79-76=3, Resulting Numbers: [13, 3]
Generated Node #3: [13, 3] from Operation: 79-76=3
Current State: 39:[13, 3], Operations: ['99-20=79', '79-76=3']
Exploring Operation: 13*3=39, Resulting Numbers: [39]
39,39 equal: Goal Reached
| 4 |
[
19,
3,
77,
99
] | 75 | [
"77-19=58",
"3*58=174",
"174-99=75"
] | Current State: 75:[19, 3, 77, 99], Operations: []
Exploring Operation: 77-19=58, Resulting Numbers: [3, 99, 58]
Generated Node #2: [3, 99, 58] from Operation: 77-19=58
Current State: 75:[3, 99, 58], Operations: ['77-19=58']
Exploring Operation: 3*58=174, Resulting Numbers: [99, 174]
Generated Node #3: [99, 174] from Operation: 3*58=174
Current State: 75:[99, 174], Operations: ['77-19=58', '3*58=174']
Exploring Operation: 174-99=75, Resulting Numbers: [75]
75,75 equal: Goal Reached
| 4 |
[
75,
43,
55,
13
] | 100 | [
"75-43=32",
"55+13=68",
"32+68=100"
] | Current State: 100:[75, 43, 55, 13], Operations: []
Exploring Operation: 75-43=32, Resulting Numbers: [55, 13, 32]
Generated Node #2: [55, 13, 32] from Operation: 75-43=32
Current State: 100:[55, 13, 32], Operations: ['75-43=32']
Exploring Operation: 55+13=68, Resulting Numbers: [32, 68]
Generated Node #3: [32, 68] from Operation: 55+13=68
Current State: 100:[32, 68], Operations: ['75-43=32', '55+13=68']
Exploring Operation: 32+68=100, Resulting Numbers: [100]
100,100 equal: Goal Reached
| 4 |
[
6,
45,
77,
48
] | 86 | [
"45-6=39",
"77+48=125",
"125-39=86"
] | Current State: 86:[6, 45, 77, 48], Operations: []
Exploring Operation: 45-6=39, Resulting Numbers: [77, 48, 39]
Generated Node #2: [77, 48, 39] from Operation: 45-6=39
Current State: 86:[77, 48, 39], Operations: ['45-6=39']
Exploring Operation: 77+48=125, Resulting Numbers: [39, 125]
Generated Node #3: [39, 125] from Operation: 77+48=125
Current State: 86:[39, 125], Operations: ['45-6=39', '77+48=125']
Exploring Operation: 125-39=86, Resulting Numbers: [86]
86,86 equal: Goal Reached
| 4 |
[
90,
2,
73,
46
] | 40 | [
"90-73=17",
"46/2=23",
"17+23=40"
] | Current State: 40:[90, 2, 73, 46], Operations: []
Exploring Operation: 90-73=17, Resulting Numbers: [2, 46, 17]
Generated Node #2: [2, 46, 17] from Operation: 90-73=17
Current State: 40:[2, 46, 17], Operations: ['90-73=17']
Exploring Operation: 46/2=23, Resulting Numbers: [17, 23]
Generated Node #3: [17, 23] from Operation: 46/2=23
Current State: 40:[17, 23], Operations: ['90-73=17', '46/2=23']
Exploring Operation: 17+23=40, Resulting Numbers: [40]
40,40 equal: Goal Reached
| 4 |
[
36,
4,
32,
33
] | 34 | [
"36-4=32",
"32/32=1",
"33+1=34"
] | Current State: 34:[36, 4, 32, 33], Operations: []
Exploring Operation: 36-4=32, Resulting Numbers: [32, 33, 32]
Generated Node #2: [32, 33, 32] from Operation: 36-4=32
Current State: 34:[32, 33, 32], Operations: ['36-4=32']
Exploring Operation: 32/32=1, Resulting Numbers: [33, 1]
Generated Node #3: [33, 1] from Operation: 32/32=1
Current State: 34:[33, 1], Operations: ['36-4=32', '32/32=1']
Exploring Operation: 33+1=34, Resulting Numbers: [34]
34,34 equal: Goal Reached
| 4 |
[
87,
80,
20,
97
] | 43 | [
"87-80=7",
"20*7=140",
"140-97=43"
] | Current State: 43:[87, 80, 20, 97], Operations: []
Exploring Operation: 87-80=7, Resulting Numbers: [20, 97, 7]
Generated Node #2: [20, 97, 7] from Operation: 87-80=7
Current State: 43:[20, 97, 7], Operations: ['87-80=7']
Exploring Operation: 20*7=140, Resulting Numbers: [97, 140]
Generated Node #3: [97, 140] from Operation: 20*7=140
Current State: 43:[97, 140], Operations: ['87-80=7', '20*7=140']
Exploring Operation: 140-97=43, Resulting Numbers: [43]
43,43 equal: Goal Reached
| 4 |
[
73,
18,
24,
32
] | 71 | [
"32-24=8",
"18*8=144",
"144-73=71"
] | Current State: 71:[73, 18, 24, 32], Operations: []
Exploring Operation: 32-24=8, Resulting Numbers: [73, 18, 8]
Generated Node #2: [73, 18, 8] from Operation: 32-24=8
Current State: 71:[73, 18, 8], Operations: ['32-24=8']
Exploring Operation: 18*8=144, Resulting Numbers: [73, 144]
Generated Node #3: [73, 144] from Operation: 18*8=144
Current State: 71:[73, 144], Operations: ['32-24=8', '18*8=144']
Exploring Operation: 144-73=71, Resulting Numbers: [71]
71,71 equal: Goal Reached
| 4 |
[
31,
67,
5,
5
] | 73 | [
"31+67=98",
"5*5=25",
"98-25=73"
] | Current State: 73:[31, 67, 5, 5], Operations: []
Exploring Operation: 31+67=98, Resulting Numbers: [5, 5, 98]
Generated Node #2: [5, 5, 98] from Operation: 31+67=98
Current State: 73:[5, 5, 98], Operations: ['31+67=98']
Exploring Operation: 5*5=25, Resulting Numbers: [98, 25]
Generated Node #3: [98, 25] from Operation: 5*5=25
Current State: 73:[98, 25], Operations: ['31+67=98', '5*5=25']
Exploring Operation: 98-25=73, Resulting Numbers: [73]
73,73 equal: Goal Reached
| 4 |
[
26,
58,
43,
1
] | 40 | [
"26+58=84",
"43+1=44",
"84-44=40"
] | Current State: 40:[26, 58, 43, 1], Operations: []
Exploring Operation: 26+58=84, Resulting Numbers: [43, 1, 84]
Generated Node #2: [43, 1, 84] from Operation: 26+58=84
Current State: 40:[43, 1, 84], Operations: ['26+58=84']
Exploring Operation: 43+1=44, Resulting Numbers: [84, 44]
Generated Node #3: [84, 44] from Operation: 43+1=44
Current State: 40:[84, 44], Operations: ['26+58=84', '43+1=44']
Exploring Operation: 84-44=40, Resulting Numbers: [40]
40,40 equal: Goal Reached
| 4 |
[
15,
42,
45,
8
] | 21 | [
"15-8=7",
"45-42=3",
"7*3=21"
] | Current State: 21:[15, 42, 45, 8], Operations: []
Exploring Operation: 15-8=7, Resulting Numbers: [42, 45, 7]
Generated Node #2: [42, 45, 7] from Operation: 15-8=7
Current State: 21:[42, 45, 7], Operations: ['15-8=7']
Exploring Operation: 45-42=3, Resulting Numbers: [7, 3]
Generated Node #3: [7, 3] from Operation: 45-42=3
Current State: 21:[7, 3], Operations: ['15-8=7', '45-42=3']
Exploring Operation: 7*3=21, Resulting Numbers: [21]
21,21 equal: Goal Reached
| 4 |
[
98,
34,
70,
38
] | 96 | [
"98-34=64",
"70-38=32",
"64+32=96"
] | Current State: 96:[98, 34, 70, 38], Operations: []
Exploring Operation: 98-34=64, Resulting Numbers: [70, 38, 64]
Generated Node #2: [70, 38, 64] from Operation: 98-34=64
Current State: 96:[70, 38, 64], Operations: ['98-34=64']
Exploring Operation: 70-38=32, Resulting Numbers: [64, 32]
Generated Node #3: [64, 32] from Operation: 70-38=32
Current State: 96:[64, 32], Operations: ['98-34=64', '70-38=32']
Exploring Operation: 64+32=96, Resulting Numbers: [96]
96,96 equal: Goal Reached
| 4 |
[
17,
88,
44,
4
] | 94 | [
"17+88=105",
"44/4=11",
"105-11=94"
] | Current State: 94:[17, 88, 44, 4], Operations: []
Exploring Operation: 17+88=105, Resulting Numbers: [44, 4, 105]
Generated Node #2: [44, 4, 105] from Operation: 17+88=105
Current State: 94:[44, 4, 105], Operations: ['17+88=105']
Exploring Operation: 44/4=11, Resulting Numbers: [105, 11]
Generated Node #3: [105, 11] from Operation: 44/4=11
Current State: 94:[105, 11], Operations: ['17+88=105', '44/4=11']
Exploring Operation: 105-11=94, Resulting Numbers: [94]
94,94 equal: Goal Reached
| 4 |
[
4,
62,
68,
87
] | 97 | [
"62-4=58",
"68+87=155",
"155-58=97"
] | Current State: 97:[4, 62, 68, 87], Operations: []
Exploring Operation: 62-4=58, Resulting Numbers: [68, 87, 58]
Generated Node #2: [68, 87, 58] from Operation: 62-4=58
Current State: 97:[68, 87, 58], Operations: ['62-4=58']
Exploring Operation: 68+87=155, Resulting Numbers: [58, 155]
Generated Node #3: [58, 155] from Operation: 68+87=155
Current State: 97:[58, 155], Operations: ['62-4=58', '68+87=155']
Exploring Operation: 155-58=97, Resulting Numbers: [97]
97,97 equal: Goal Reached
| 4 |
[
10,
26,
9,
44
] | 40 | [
"10+26=36",
"36/9=4",
"44-4=40"
] | Current State: 40:[10, 26, 9, 44], Operations: []
Exploring Operation: 10+26=36, Resulting Numbers: [9, 44, 36]
Generated Node #2: [9, 44, 36] from Operation: 10+26=36
Current State: 40:[9, 44, 36], Operations: ['10+26=36']
Exploring Operation: 36/9=4, Resulting Numbers: [44, 4]
Generated Node #3: [44, 4] from Operation: 36/9=4
Current State: 40:[44, 4], Operations: ['10+26=36', '36/9=4']
Exploring Operation: 44-4=40, Resulting Numbers: [40]
40,40 equal: Goal Reached
| 4 |
[
30,
88,
3,
67
] | 23 | [
"67-30=37",
"3*37=111",
"111-88=23"
] | Current State: 23:[30, 88, 3, 67], Operations: []
Exploring Operation: 67-30=37, Resulting Numbers: [88, 3, 37]
Generated Node #2: [88, 3, 37] from Operation: 67-30=37
Current State: 23:[88, 3, 37], Operations: ['67-30=37']
Exploring Operation: 3*37=111, Resulting Numbers: [88, 111]
Generated Node #3: [88, 111] from Operation: 3*37=111
Current State: 23:[88, 111], Operations: ['67-30=37', '3*37=111']
Exploring Operation: 111-88=23, Resulting Numbers: [23]
23,23 equal: Goal Reached
| 4 |
[
75,
96,
94,
6
] | 72 | [
"75*96=7200",
"94+6=100",
"7200/100=72"
] | Current State: 72:[75, 96, 94, 6], Operations: []
Exploring Operation: 75*96=7200, Resulting Numbers: [94, 6, 7200]
Generated Node #2: [94, 6, 7200] from Operation: 75*96=7200
Current State: 72:[94, 6, 7200], Operations: ['75*96=7200']
Exploring Operation: 94+6=100, Resulting Numbers: [7200, 100]
Generated Node #3: [7200, 100] from Operation: 94+6=100
Current State: 72:[7200, 100], Operations: ['75*96=7200', '94+6=100']
Exploring Operation: 7200/100=72, Resulting Numbers: [72]
72,72 equal: Goal Reached
| 4 |
[
3,
84,
25,
60
] | 38 | [
"84*25=2100",
"2100/60=35",
"3+35=38"
] | Current State: 38:[3, 84, 25, 60], Operations: []
Exploring Operation: 84*25=2100, Resulting Numbers: [3, 60, 2100]
Generated Node #2: [3, 60, 2100] from Operation: 84*25=2100
Current State: 38:[3, 60, 2100], Operations: ['84*25=2100']
Exploring Operation: 2100/60=35, Resulting Numbers: [3, 35]
Generated Node #3: [3, 35] from Operation: 2100/60=35
Current State: 38:[3, 35], Operations: ['84*25=2100', '2100/60=35']
Exploring Operation: 3+35=38, Resulting Numbers: [38]
38,38 equal: Goal Reached
| 4 |
[
85,
46,
78,
17
] | 56 | [
"85-46=39",
"78+17=95",
"95-39=56"
] | Current State: 56:[85, 46, 78, 17], Operations: []
Exploring Operation: 85-46=39, Resulting Numbers: [78, 17, 39]
Generated Node #2: [78, 17, 39] from Operation: 85-46=39
Current State: 56:[78, 17, 39], Operations: ['85-46=39']
Exploring Operation: 78+17=95, Resulting Numbers: [39, 95]
Generated Node #3: [39, 95] from Operation: 78+17=95
Current State: 56:[39, 95], Operations: ['85-46=39', '78+17=95']
Exploring Operation: 95-39=56, Resulting Numbers: [56]
56,56 equal: Goal Reached
| 4 |
[
21,
44,
98,
34
] | 63 | [
"98+34=132",
"21*132=2772",
"2772/44=63"
] | Current State: 63:[21, 44, 98, 34], Operations: []
Exploring Operation: 98+34=132, Resulting Numbers: [21, 44, 132]
Generated Node #2: [21, 44, 132] from Operation: 98+34=132
Current State: 63:[21, 44, 132], Operations: ['98+34=132']
Exploring Operation: 21*132=2772, Resulting Numbers: [44, 2772]
Generated Node #3: [44, 2772] from Operation: 21*132=2772
Current State: 63:[44, 2772], Operations: ['98+34=132', '21*132=2772']
Exploring Operation: 2772/44=63, Resulting Numbers: [63]
63,63 equal: Goal Reached
| 4 |
[
21,
60,
94,
4
] | 88 | [
"94-21=73",
"60/4=15",
"73+15=88"
] | Current State: 88:[21, 60, 94, 4], Operations: []
Exploring Operation: 94-21=73, Resulting Numbers: [60, 4, 73]
Generated Node #2: [60, 4, 73] from Operation: 94-21=73
Current State: 88:[60, 4, 73], Operations: ['94-21=73']
Exploring Operation: 60/4=15, Resulting Numbers: [73, 15]
Generated Node #3: [73, 15] from Operation: 60/4=15
Current State: 88:[73, 15], Operations: ['94-21=73', '60/4=15']
Exploring Operation: 73+15=88, Resulting Numbers: [88]
88,88 equal: Goal Reached
| 4 |
[
55,
31,
17,
74
] | 33 | [
"55-31=24",
"74-17=57",
"57-24=33"
] | Current State: 33:[55, 31, 17, 74], Operations: []
Exploring Operation: 55-31=24, Resulting Numbers: [17, 74, 24]
Generated Node #2: [17, 74, 24] from Operation: 55-31=24
Current State: 33:[17, 74, 24], Operations: ['55-31=24']
Exploring Operation: 74-17=57, Resulting Numbers: [24, 57]
Generated Node #3: [24, 57] from Operation: 74-17=57
Current State: 33:[24, 57], Operations: ['55-31=24', '74-17=57']
Exploring Operation: 57-24=33, Resulting Numbers: [33]
33,33 equal: Goal Reached
| 4 |
[
87,
77,
6,
48
] | 80 | [
"87-77=10",
"48/6=8",
"10*8=80"
] | Current State: 80:[87, 77, 6, 48], Operations: []
Exploring Operation: 87-77=10, Resulting Numbers: [6, 48, 10]
Generated Node #2: [6, 48, 10] from Operation: 87-77=10
Current State: 80:[6, 48, 10], Operations: ['87-77=10']
Exploring Operation: 48/6=8, Resulting Numbers: [10, 8]
Generated Node #3: [10, 8] from Operation: 48/6=8
Current State: 80:[10, 8], Operations: ['87-77=10', '48/6=8']
Exploring Operation: 10*8=80, Resulting Numbers: [80]
80,80 equal: Goal Reached
| 4 |
[
62,
4,
85,
27
] | 46 | [
"62+4=66",
"85+27=112",
"112-66=46"
] | Current State: 46:[62, 4, 85, 27], Operations: []
Exploring Operation: 62+4=66, Resulting Numbers: [85, 27, 66]
Generated Node #2: [85, 27, 66] from Operation: 62+4=66
Current State: 46:[85, 27, 66], Operations: ['62+4=66']
Exploring Operation: 85+27=112, Resulting Numbers: [66, 112]
Generated Node #3: [66, 112] from Operation: 85+27=112
Current State: 46:[66, 112], Operations: ['62+4=66', '85+27=112']
Exploring Operation: 112-66=46, Resulting Numbers: [46]
46,46 equal: Goal Reached
| 4 |
[
62,
64,
85,
29
] | 58 | [
"64-62=2",
"85-29=56",
"2+56=58"
] | Current State: 58:[62, 64, 85, 29], Operations: []
Exploring Operation: 64-62=2, Resulting Numbers: [85, 29, 2]
Generated Node #2: [85, 29, 2] from Operation: 64-62=2
Current State: 58:[85, 29, 2], Operations: ['64-62=2']
Exploring Operation: 85-29=56, Resulting Numbers: [2, 56]
Generated Node #3: [2, 56] from Operation: 85-29=56
Current State: 58:[2, 56], Operations: ['64-62=2', '85-29=56']
Exploring Operation: 2+56=58, Resulting Numbers: [58]
58,58 equal: Goal Reached
| 4 |
[
58,
12,
19,
15
] | 12 | [
"58-12=46",
"19+15=34",
"46-34=12"
] | Current State: 12:[58, 12, 19, 15], Operations: []
Exploring Operation: 58-12=46, Resulting Numbers: [19, 15, 46]
Generated Node #2: [19, 15, 46] from Operation: 58-12=46
Current State: 12:[19, 15, 46], Operations: ['58-12=46']
Exploring Operation: 19+15=34, Resulting Numbers: [46, 34]
Generated Node #3: [46, 34] from Operation: 19+15=34
Current State: 12:[46, 34], Operations: ['58-12=46', '19+15=34']
Exploring Operation: 46-34=12, Resulting Numbers: [12]
12,12 equal: Goal Reached
| 4 |
[
80,
43,
2,
37
] | 34 | [
"80/2=40",
"43-37=6",
"40-6=34"
] | Current State: 34:[80, 43, 2, 37], Operations: []
Exploring Operation: 80/2=40, Resulting Numbers: [43, 37, 40]
Generated Node #2: [43, 37, 40] from Operation: 80/2=40
Current State: 34:[43, 37, 40], Operations: ['80/2=40']
Exploring Operation: 43-37=6, Resulting Numbers: [40, 6]
Generated Node #3: [40, 6] from Operation: 43-37=6
Current State: 34:[40, 6], Operations: ['80/2=40', '43-37=6']
Exploring Operation: 40-6=34, Resulting Numbers: [34]
34,34 equal: Goal Reached
| 4 |
[
25,
38,
54,
66
] | 42 | [
"25*66=1650",
"1650-54=1596",
"1596/38=42"
] | Current State: 42:[25, 38, 54, 66], Operations: []
Exploring Operation: 25*66=1650, Resulting Numbers: [38, 54, 1650]
Generated Node #2: [38, 54, 1650] from Operation: 25*66=1650
Current State: 42:[38, 54, 1650], Operations: ['25*66=1650']
Exploring Operation: 1650-54=1596, Resulting Numbers: [38, 1596]
Generated Node #3: [38, 1596] from Operation: 1650-54=1596
Current State: 42:[38, 1596], Operations: ['25*66=1650', '1650-54=1596']
Exploring Operation: 1596/38=42, Resulting Numbers: [42]
42,42 equal: Goal Reached
| 4 |
[
42,
2,
25,
3
] | 35 | [
"42-2=40",
"25*3=75",
"75-40=35"
] | Current State: 35:[42, 2, 25, 3], Operations: []
Exploring Operation: 42-2=40, Resulting Numbers: [25, 3, 40]
Generated Node #2: [25, 3, 40] from Operation: 42-2=40
Current State: 35:[25, 3, 40], Operations: ['42-2=40']
Exploring Operation: 25*3=75, Resulting Numbers: [40, 75]
Generated Node #3: [40, 75] from Operation: 25*3=75
Current State: 35:[40, 75], Operations: ['42-2=40', '25*3=75']
Exploring Operation: 75-40=35, Resulting Numbers: [35]
35,35 equal: Goal Reached
| 4 |
[
12,
61,
36,
39
] | 57 | [
"39-36=3",
"12/3=4",
"61-4=57"
] | Current State: 57:[12, 61, 36, 39], Operations: []
Exploring Operation: 39-36=3, Resulting Numbers: [12, 61, 3]
Generated Node #2: [12, 61, 3] from Operation: 39-36=3
Current State: 57:[12, 61, 3], Operations: ['39-36=3']
Exploring Operation: 12/3=4, Resulting Numbers: [61, 4]
Generated Node #3: [61, 4] from Operation: 12/3=4
Current State: 57:[61, 4], Operations: ['39-36=3', '12/3=4']
Exploring Operation: 61-4=57, Resulting Numbers: [57]
57,57 equal: Goal Reached
| 4 |
[
50,
75,
22,
85
] | 88 | [
"75-50=25",
"85-22=63",
"25+63=88"
] | Current State: 88:[50, 75, 22, 85], Operations: []
Exploring Operation: 75-50=25, Resulting Numbers: [22, 85, 25]
Generated Node #2: [22, 85, 25] from Operation: 75-50=25
Current State: 88:[22, 85, 25], Operations: ['75-50=25']
Exploring Operation: 85-22=63, Resulting Numbers: [25, 63]
Generated Node #3: [25, 63] from Operation: 85-22=63
Current State: 88:[25, 63], Operations: ['75-50=25', '85-22=63']
Exploring Operation: 25+63=88, Resulting Numbers: [88]
88,88 equal: Goal Reached
| 4 |
[
47,
63,
13,
61
] | 36 | [
"47+63=110",
"13+61=74",
"110-74=36"
] | Current State: 36:[47, 63, 13, 61], Operations: []
Exploring Operation: 47+63=110, Resulting Numbers: [13, 61, 110]
Generated Node #2: [13, 61, 110] from Operation: 47+63=110
Current State: 36:[13, 61, 110], Operations: ['47+63=110']
Exploring Operation: 13+61=74, Resulting Numbers: [110, 74]
Generated Node #3: [110, 74] from Operation: 13+61=74
Current State: 36:[110, 74], Operations: ['47+63=110', '13+61=74']
Exploring Operation: 110-74=36, Resulting Numbers: [36]
36,36 equal: Goal Reached
| 4 |
[
78,
76,
33,
71
] | 19 | [
"78-76=2",
"71-33=38",
"38/2=19"
] | Current State: 19:[78, 76, 33, 71], Operations: []
Exploring Operation: 78-76=2, Resulting Numbers: [33, 71, 2]
Generated Node #2: [33, 71, 2] from Operation: 78-76=2
Current State: 19:[33, 71, 2], Operations: ['78-76=2']
Exploring Operation: 71-33=38, Resulting Numbers: [2, 38]
Generated Node #3: [2, 38] from Operation: 71-33=38
Current State: 19:[2, 38], Operations: ['78-76=2', '71-33=38']
Exploring Operation: 38/2=19, Resulting Numbers: [19]
19,19 equal: Goal Reached
| 4 |
[
90,
88,
14,
52
] | 45 | [
"90-88=2",
"14/2=7",
"52-7=45"
] | Current State: 45:[90, 88, 14, 52], Operations: []
Exploring Operation: 90-88=2, Resulting Numbers: [14, 52, 2]
Generated Node #2: [14, 52, 2] from Operation: 90-88=2
Current State: 45:[14, 52, 2], Operations: ['90-88=2']
Exploring Operation: 14/2=7, Resulting Numbers: [52, 7]
Generated Node #3: [52, 7] from Operation: 14/2=7
Current State: 45:[52, 7], Operations: ['90-88=2', '14/2=7']
Exploring Operation: 52-7=45, Resulting Numbers: [45]
45,45 equal: Goal Reached
| 4 |
[
9,
98,
32,
4
] | 71 | [
"9+98=107",
"32+4=36",
"107-36=71"
] | Current State: 71:[9, 98, 32, 4], Operations: []
Exploring Operation: 9+98=107, Resulting Numbers: [32, 4, 107]
Generated Node #2: [32, 4, 107] from Operation: 9+98=107
Current State: 71:[32, 4, 107], Operations: ['9+98=107']
Exploring Operation: 32+4=36, Resulting Numbers: [107, 36]
Generated Node #3: [107, 36] from Operation: 32+4=36
Current State: 71:[107, 36], Operations: ['9+98=107', '32+4=36']
Exploring Operation: 107-36=71, Resulting Numbers: [71]
71,71 equal: Goal Reached
| 4 |
[
35,
75,
94,
19
] | 34 | [
"94-75=19",
"19/19=1",
"35-1=34"
] | Current State: 34:[35, 75, 94, 19], Operations: []
Exploring Operation: 94-75=19, Resulting Numbers: [35, 19, 19]
Generated Node #2: [35, 19, 19] from Operation: 94-75=19
Current State: 34:[35, 19, 19], Operations: ['94-75=19']
Exploring Operation: 19/19=1, Resulting Numbers: [35, 1]
Generated Node #3: [35, 1] from Operation: 19/19=1
Current State: 34:[35, 1], Operations: ['94-75=19', '19/19=1']
Exploring Operation: 35-1=34, Resulting Numbers: [34]
34,34 equal: Goal Reached
| 4 |
[
96,
85,
61,
22
] | 11 | [
"96+85=181",
"61+181=242",
"242/22=11"
] | Current State: 11:[96, 85, 61, 22], Operations: []
Exploring Operation: 96+85=181, Resulting Numbers: [61, 22, 181]
Generated Node #2: [61, 22, 181] from Operation: 96+85=181
Current State: 11:[61, 22, 181], Operations: ['96+85=181']
Exploring Operation: 61+181=242, Resulting Numbers: [22, 242]
Generated Node #3: [22, 242] from Operation: 61+181=242
Current State: 11:[22, 242], Operations: ['96+85=181', '61+181=242']
Exploring Operation: 242/22=11, Resulting Numbers: [11]
11,11 equal: Goal Reached
| 4 |
[
40,
35,
12,
33
] | 40 | [
"40-35=5",
"12+33=45",
"45-5=40"
] | Current State: 40:[40, 35, 12, 33], Operations: []
Exploring Operation: 40-35=5, Resulting Numbers: [12, 33, 5]
Generated Node #2: [12, 33, 5] from Operation: 40-35=5
Current State: 40:[12, 33, 5], Operations: ['40-35=5']
Exploring Operation: 12+33=45, Resulting Numbers: [5, 45]
Generated Node #3: [5, 45] from Operation: 12+33=45
Current State: 40:[5, 45], Operations: ['40-35=5', '12+33=45']
Exploring Operation: 45-5=40, Resulting Numbers: [40]
40,40 equal: Goal Reached
| 4 |
[
64,
35,
6,
48
] | 24 | [
"64+6=70",
"35*48=1680",
"1680/70=24"
] | Current State: 24:[64, 35, 6, 48], Operations: []
Exploring Operation: 64+6=70, Resulting Numbers: [35, 48, 70]
Generated Node #2: [35, 48, 70] from Operation: 64+6=70
Current State: 24:[35, 48, 70], Operations: ['64+6=70']
Exploring Operation: 35*48=1680, Resulting Numbers: [70, 1680]
Generated Node #3: [70, 1680] from Operation: 35*48=1680
Current State: 24:[70, 1680], Operations: ['64+6=70', '35*48=1680']
Exploring Operation: 1680/70=24, Resulting Numbers: [24]
24,24 equal: Goal Reached
| 4 |
[
8,
40,
53,
91
] | 23 | [
"40+53=93",
"91+93=184",
"184/8=23"
] | Current State: 23:[8, 40, 53, 91], Operations: []
Exploring Operation: 40+53=93, Resulting Numbers: [8, 91, 93]
Generated Node #2: [8, 91, 93] from Operation: 40+53=93
Current State: 23:[8, 91, 93], Operations: ['40+53=93']
Exploring Operation: 91+93=184, Resulting Numbers: [8, 184]
Generated Node #3: [8, 184] from Operation: 91+93=184
Current State: 23:[8, 184], Operations: ['40+53=93', '91+93=184']
Exploring Operation: 184/8=23, Resulting Numbers: [23]
23,23 equal: Goal Reached
| 4 |
[
71,
13,
12,
35
] | 16 | [
"71-35=36",
"36/12=3",
"13+3=16"
] | Current State: 16:[71, 13, 12, 35], Operations: []
Exploring Operation: 71-35=36, Resulting Numbers: [13, 12, 36]
Generated Node #2: [13, 12, 36] from Operation: 71-35=36
Current State: 16:[13, 12, 36], Operations: ['71-35=36']
Exploring Operation: 36/12=3, Resulting Numbers: [13, 3]
Generated Node #3: [13, 3] from Operation: 36/12=3
Current State: 16:[13, 3], Operations: ['71-35=36', '36/12=3']
Exploring Operation: 13+3=16, Resulting Numbers: [16]
16,16 equal: Goal Reached
| 4 |
[
60,
38,
89,
45
] | 66 | [
"60-38=22",
"89-45=44",
"22+44=66"
] | Current State: 66:[60, 38, 89, 45], Operations: []
Exploring Operation: 60-38=22, Resulting Numbers: [89, 45, 22]
Generated Node #2: [89, 45, 22] from Operation: 60-38=22
Current State: 66:[89, 45, 22], Operations: ['60-38=22']
Exploring Operation: 89-45=44, Resulting Numbers: [22, 44]
Generated Node #3: [22, 44] from Operation: 89-45=44
Current State: 66:[22, 44], Operations: ['60-38=22', '89-45=44']
Exploring Operation: 22+44=66, Resulting Numbers: [66]
66,66 equal: Goal Reached
| 4 |
[
73,
3,
10,
28
] | 25 | [
"73-3=70",
"10*70=700",
"700/28=25"
] | Current State: 25:[73, 3, 10, 28], Operations: []
Exploring Operation: 73-3=70, Resulting Numbers: [10, 28, 70]
Generated Node #2: [10, 28, 70] from Operation: 73-3=70
Current State: 25:[10, 28, 70], Operations: ['73-3=70']
Exploring Operation: 10*70=700, Resulting Numbers: [28, 700]
Generated Node #3: [28, 700] from Operation: 10*70=700
Current State: 25:[28, 700], Operations: ['73-3=70', '10*70=700']
Exploring Operation: 700/28=25, Resulting Numbers: [25]
25,25 equal: Goal Reached
| 4 |
[
81,
70,
90,
10
] | 97 | [
"70+90=160",
"160/10=16",
"81+16=97"
] | Current State: 97:[81, 70, 90, 10], Operations: []
Exploring Operation: 70+90=160, Resulting Numbers: [81, 10, 160]
Generated Node #2: [81, 10, 160] from Operation: 70+90=160
Current State: 97:[81, 10, 160], Operations: ['70+90=160']
Exploring Operation: 160/10=16, Resulting Numbers: [81, 16]
Generated Node #3: [81, 16] from Operation: 160/10=16
Current State: 97:[81, 16], Operations: ['70+90=160', '160/10=16']
Exploring Operation: 81+16=97, Resulting Numbers: [97]
97,97 equal: Goal Reached
| 4 |
[
17,
21,
60,
46
] | 52 | [
"17+21=38",
"60-46=14",
"38+14=52"
] | Current State: 52:[17, 21, 60, 46], Operations: []
Exploring Operation: 17+21=38, Resulting Numbers: [60, 46, 38]
Generated Node #2: [60, 46, 38] from Operation: 17+21=38
Current State: 52:[60, 46, 38], Operations: ['17+21=38']
Exploring Operation: 60-46=14, Resulting Numbers: [38, 14]
Generated Node #3: [38, 14] from Operation: 60-46=14
Current State: 52:[38, 14], Operations: ['17+21=38', '60-46=14']
Exploring Operation: 38+14=52, Resulting Numbers: [52]
52,52 equal: Goal Reached
| 4 |
[
47,
10,
64,
63
] | 58 | [
"47+10=57",
"64-63=1",
"57+1=58"
] | Current State: 58:[47, 10, 64, 63], Operations: []
Exploring Operation: 47+10=57, Resulting Numbers: [64, 63, 57]
Generated Node #2: [64, 63, 57] from Operation: 47+10=57
Current State: 58:[64, 63, 57], Operations: ['47+10=57']
Exploring Operation: 64-63=1, Resulting Numbers: [57, 1]
Generated Node #3: [57, 1] from Operation: 64-63=1
Current State: 58:[57, 1], Operations: ['47+10=57', '64-63=1']
Exploring Operation: 57+1=58, Resulting Numbers: [58]
58,58 equal: Goal Reached
| 4 |
[
48,
27,
99,
4
] | 44 | [
"48*99=4752",
"27*4=108",
"4752/108=44"
] | Current State: 44:[48, 27, 99, 4], Operations: []
Exploring Operation: 48*99=4752, Resulting Numbers: [27, 4, 4752]
Generated Node #2: [27, 4, 4752] from Operation: 48*99=4752
Current State: 44:[27, 4, 4752], Operations: ['48*99=4752']
Exploring Operation: 27*4=108, Resulting Numbers: [4752, 108]
Generated Node #3: [4752, 108] from Operation: 27*4=108
Current State: 44:[4752, 108], Operations: ['48*99=4752', '27*4=108']
Exploring Operation: 4752/108=44, Resulting Numbers: [44]
44,44 equal: Goal Reached
| 4 |
[
86,
96,
16,
37
] | 31 | [
"96-86=10",
"37-16=21",
"10+21=31"
] | Current State: 31:[86, 96, 16, 37], Operations: []
Exploring Operation: 96-86=10, Resulting Numbers: [16, 37, 10]
Generated Node #2: [16, 37, 10] from Operation: 96-86=10
Current State: 31:[16, 37, 10], Operations: ['96-86=10']
Exploring Operation: 37-16=21, Resulting Numbers: [10, 21]
Generated Node #3: [10, 21] from Operation: 37-16=21
Current State: 31:[10, 21], Operations: ['96-86=10', '37-16=21']
Exploring Operation: 10+21=31, Resulting Numbers: [31]
31,31 equal: Goal Reached
| 4 |
[
22,
51,
34,
86
] | 96 | [
"86-22=64",
"51*64=3264",
"3264/34=96"
] | Current State: 96:[22, 51, 34, 86], Operations: []
Exploring Operation: 86-22=64, Resulting Numbers: [51, 34, 64]
Generated Node #2: [51, 34, 64] from Operation: 86-22=64
Current State: 96:[51, 34, 64], Operations: ['86-22=64']
Exploring Operation: 51*64=3264, Resulting Numbers: [34, 3264]
Generated Node #3: [34, 3264] from Operation: 51*64=3264
Current State: 96:[34, 3264], Operations: ['86-22=64', '51*64=3264']
Exploring Operation: 3264/34=96, Resulting Numbers: [96]
96,96 equal: Goal Reached
| 4 |
[
84,
26,
34,
70
] | 46 | [
"84-26=58",
"34+70=104",
"104-58=46"
] | Current State: 46:[84, 26, 34, 70], Operations: []
Exploring Operation: 84-26=58, Resulting Numbers: [34, 70, 58]
Generated Node #2: [34, 70, 58] from Operation: 84-26=58
Current State: 46:[34, 70, 58], Operations: ['84-26=58']
Exploring Operation: 34+70=104, Resulting Numbers: [58, 104]
Generated Node #3: [58, 104] from Operation: 34+70=104
Current State: 46:[58, 104], Operations: ['84-26=58', '34+70=104']
Exploring Operation: 104-58=46, Resulting Numbers: [46]
46,46 equal: Goal Reached
| 4 |
[
75,
9,
57,
19
] | 87 | [
"75+9=84",
"57/19=3",
"84+3=87"
] | Current State: 87:[75, 9, 57, 19], Operations: []
Exploring Operation: 75+9=84, Resulting Numbers: [57, 19, 84]
Generated Node #2: [57, 19, 84] from Operation: 75+9=84
Current State: 87:[57, 19, 84], Operations: ['75+9=84']
Exploring Operation: 57/19=3, Resulting Numbers: [84, 3]
Generated Node #3: [84, 3] from Operation: 57/19=3
Current State: 87:[84, 3], Operations: ['75+9=84', '57/19=3']
Exploring Operation: 84+3=87, Resulting Numbers: [87]
87,87 equal: Goal Reached
| 4 |
[
76,
84,
5,
6
] | 70 | [
"84-76=8",
"6+8=14",
"5*14=70"
] | Current State: 70:[76, 84, 5, 6], Operations: []
Exploring Operation: 84-76=8, Resulting Numbers: [5, 6, 8]
Generated Node #2: [5, 6, 8] from Operation: 84-76=8
Current State: 70:[5, 6, 8], Operations: ['84-76=8']
Exploring Operation: 6+8=14, Resulting Numbers: [5, 14]
Generated Node #3: [5, 14] from Operation: 6+8=14
Current State: 70:[5, 14], Operations: ['84-76=8', '6+8=14']
Exploring Operation: 5*14=70, Resulting Numbers: [70]
70,70 equal: Goal Reached
| 4 |
[
31,
2,
36,
24
] | 37 | [
"31+24=55",
"36/2=18",
"55-18=37"
] | Current State: 37:[31, 2, 36, 24], Operations: []
Exploring Operation: 31+24=55, Resulting Numbers: [2, 36, 55]
Generated Node #2: [2, 36, 55] from Operation: 31+24=55
Current State: 37:[2, 36, 55], Operations: ['31+24=55']
Exploring Operation: 36/2=18, Resulting Numbers: [55, 18]
Generated Node #3: [55, 18] from Operation: 36/2=18
Current State: 37:[55, 18], Operations: ['31+24=55', '36/2=18']
Exploring Operation: 55-18=37, Resulting Numbers: [37]
37,37 equal: Goal Reached
| 4 |
[
48,
93,
81,
42
] | 84 | [
"93-48=45",
"81-42=39",
"45+39=84"
] | Current State: 84:[48, 93, 81, 42], Operations: []
Exploring Operation: 93-48=45, Resulting Numbers: [81, 42, 45]
Generated Node #2: [81, 42, 45] from Operation: 93-48=45
Current State: 84:[81, 42, 45], Operations: ['93-48=45']
Exploring Operation: 81-42=39, Resulting Numbers: [45, 39]
Generated Node #3: [45, 39] from Operation: 81-42=39
Current State: 84:[45, 39], Operations: ['93-48=45', '81-42=39']
Exploring Operation: 45+39=84, Resulting Numbers: [84]
84,84 equal: Goal Reached
| 4 |
[
16,
20,
67,
43
] | 20 | [
"20-16=4",
"67-43=24",
"24-4=20"
] | Current State: 20:[16, 20, 67, 43], Operations: []
Exploring Operation: 20-16=4, Resulting Numbers: [67, 43, 4]
Generated Node #2: [67, 43, 4] from Operation: 20-16=4
Current State: 20:[67, 43, 4], Operations: ['20-16=4']
Exploring Operation: 67-43=24, Resulting Numbers: [4, 24]
Generated Node #3: [4, 24] from Operation: 67-43=24
Current State: 20:[4, 24], Operations: ['20-16=4', '67-43=24']
Exploring Operation: 24-4=20, Resulting Numbers: [20]
20,20 equal: Goal Reached
| 4 |
[
16,
51,
1,
64
] | 54 | [
"64/16=4",
"51-1=50",
"4+50=54"
] | Current State: 54:[16, 51, 1, 64], Operations: []
Exploring Operation: 64/16=4, Resulting Numbers: [51, 1, 4]
Generated Node #2: [51, 1, 4] from Operation: 64/16=4
Current State: 54:[51, 1, 4], Operations: ['64/16=4']
Exploring Operation: 51-1=50, Resulting Numbers: [4, 50]
Generated Node #3: [4, 50] from Operation: 51-1=50
Current State: 54:[4, 50], Operations: ['64/16=4', '51-1=50']
Exploring Operation: 4+50=54, Resulting Numbers: [54]
54,54 equal: Goal Reached
| 4 |
[
3,
75,
66,
61
] | 42 | [
"3*61=183",
"75+66=141",
"183-141=42"
] | Current State: 42:[3, 75, 66, 61], Operations: []
Exploring Operation: 3*61=183, Resulting Numbers: [75, 66, 183]
Generated Node #2: [75, 66, 183] from Operation: 3*61=183
Current State: 42:[75, 66, 183], Operations: ['3*61=183']
Exploring Operation: 75+66=141, Resulting Numbers: [183, 141]
Generated Node #3: [183, 141] from Operation: 75+66=141
Current State: 42:[183, 141], Operations: ['3*61=183', '75+66=141']
Exploring Operation: 183-141=42, Resulting Numbers: [42]
42,42 equal: Goal Reached
| 4 |
[
51,
34,
21,
88
] | 84 | [
"51-34=17",
"88-21=67",
"17+67=84"
] | Current State: 84:[51, 34, 21, 88], Operations: []
Exploring Operation: 51-34=17, Resulting Numbers: [21, 88, 17]
Generated Node #2: [21, 88, 17] from Operation: 51-34=17
Current State: 84:[21, 88, 17], Operations: ['51-34=17']
Exploring Operation: 88-21=67, Resulting Numbers: [17, 67]
Generated Node #3: [17, 67] from Operation: 88-21=67
Current State: 84:[17, 67], Operations: ['51-34=17', '88-21=67']
Exploring Operation: 17+67=84, Resulting Numbers: [84]
84,84 equal: Goal Reached
| 4 |
[
5,
91,
49,
43
] | 98 | [
"91-5=86",
"49*86=4214",
"4214/43=98"
] | Current State: 98:[5, 91, 49, 43], Operations: []
Exploring Operation: 91-5=86, Resulting Numbers: [49, 43, 86]
Generated Node #2: [49, 43, 86] from Operation: 91-5=86
Current State: 98:[49, 43, 86], Operations: ['91-5=86']
Exploring Operation: 49*86=4214, Resulting Numbers: [43, 4214]
Generated Node #3: [43, 4214] from Operation: 49*86=4214
Current State: 98:[43, 4214], Operations: ['91-5=86', '49*86=4214']
Exploring Operation: 4214/43=98, Resulting Numbers: [98]
98,98 equal: Goal Reached
| 4 |
[
48,
41,
60,
3
] | 26 | [
"48+41=89",
"60+3=63",
"89-63=26"
] | Current State: 26:[48, 41, 60, 3], Operations: []
Exploring Operation: 48+41=89, Resulting Numbers: [60, 3, 89]
Generated Node #2: [60, 3, 89] from Operation: 48+41=89
Current State: 26:[60, 3, 89], Operations: ['48+41=89']
Exploring Operation: 60+3=63, Resulting Numbers: [89, 63]
Generated Node #3: [89, 63] from Operation: 60+3=63
Current State: 26:[89, 63], Operations: ['48+41=89', '60+3=63']
Exploring Operation: 89-63=26, Resulting Numbers: [26]
26,26 equal: Goal Reached
| 4 |
[
29,
50,
76,
4
] | 74 | [
"29-4=25",
"50/25=2",
"76-2=74"
] | Current State: 74:[29, 50, 76, 4], Operations: []
Exploring Operation: 29-4=25, Resulting Numbers: [50, 76, 25]
Generated Node #2: [50, 76, 25] from Operation: 29-4=25
Current State: 74:[50, 76, 25], Operations: ['29-4=25']
Exploring Operation: 50/25=2, Resulting Numbers: [76, 2]
Generated Node #3: [76, 2] from Operation: 50/25=2
Current State: 74:[76, 2], Operations: ['29-4=25', '50/25=2']
Exploring Operation: 76-2=74, Resulting Numbers: [74]
74,74 equal: Goal Reached
| 4 |
[
74,
7,
87,
14
] | 26 | [
"87-74=13",
"14/7=2",
"13*2=26"
] | Current State: 26:[74, 7, 87, 14], Operations: []
Exploring Operation: 87-74=13, Resulting Numbers: [7, 14, 13]
Generated Node #2: [7, 14, 13] from Operation: 87-74=13
Current State: 26:[7, 14, 13], Operations: ['87-74=13']
Exploring Operation: 14/7=2, Resulting Numbers: [13, 2]
Generated Node #3: [13, 2] from Operation: 14/7=2
Current State: 26:[13, 2], Operations: ['87-74=13', '14/7=2']
Exploring Operation: 13*2=26, Resulting Numbers: [26]
26,26 equal: Goal Reached
| 4 |
[
95,
39,
97,
21
] | 36 | [
"97-95=2",
"39-21=18",
"2*18=36"
] | Current State: 36:[95, 39, 97, 21], Operations: []
Exploring Operation: 97-95=2, Resulting Numbers: [39, 21, 2]
Generated Node #2: [39, 21, 2] from Operation: 97-95=2
Current State: 36:[39, 21, 2], Operations: ['97-95=2']
Exploring Operation: 39-21=18, Resulting Numbers: [2, 18]
Generated Node #3: [2, 18] from Operation: 39-21=18
Current State: 36:[2, 18], Operations: ['97-95=2', '39-21=18']
Exploring Operation: 2*18=36, Resulting Numbers: [36]
36,36 equal: Goal Reached
| 4 |
[
55,
10,
3,
49
] | 74 | [
"55+49=104",
"10*3=30",
"104-30=74"
] | Current State: 74:[55, 10, 3, 49], Operations: []
Exploring Operation: 55+49=104, Resulting Numbers: [10, 3, 104]
Generated Node #2: [10, 3, 104] from Operation: 55+49=104
Current State: 74:[10, 3, 104], Operations: ['55+49=104']
Exploring Operation: 10*3=30, Resulting Numbers: [104, 30]
Generated Node #3: [104, 30] from Operation: 10*3=30
Current State: 74:[104, 30], Operations: ['55+49=104', '10*3=30']
Exploring Operation: 104-30=74, Resulting Numbers: [74]
74,74 equal: Goal Reached
| 4 |
[
19,
28,
90,
37
] | 100 | [
"19+28=47",
"90-37=53",
"47+53=100"
] | Current State: 100:[19, 28, 90, 37], Operations: []
Exploring Operation: 19+28=47, Resulting Numbers: [90, 37, 47]
Generated Node #2: [90, 37, 47] from Operation: 19+28=47
Current State: 100:[90, 37, 47], Operations: ['19+28=47']
Exploring Operation: 90-37=53, Resulting Numbers: [47, 53]
Generated Node #3: [47, 53] from Operation: 90-37=53
Current State: 100:[47, 53], Operations: ['19+28=47', '90-37=53']
Exploring Operation: 47+53=100, Resulting Numbers: [100]
100,100 equal: Goal Reached
| 4 |
[
19,
25,
43,
4
] | 94 | [
"19*4=76",
"43-25=18",
"76+18=94"
] | Current State: 94:[19, 25, 43, 4], Operations: []
Exploring Operation: 19*4=76, Resulting Numbers: [25, 43, 76]
Generated Node #2: [25, 43, 76] from Operation: 19*4=76
Current State: 94:[25, 43, 76], Operations: ['19*4=76']
Exploring Operation: 43-25=18, Resulting Numbers: [76, 18]
Generated Node #3: [76, 18] from Operation: 43-25=18
Current State: 94:[76, 18], Operations: ['19*4=76', '43-25=18']
Exploring Operation: 76+18=94, Resulting Numbers: [94]
94,94 equal: Goal Reached
| 4 |
[
95,
54,
5,
7
] | 88 | [
"54-5=49",
"49/7=7",
"95-7=88"
] | Current State: 88:[95, 54, 5, 7], Operations: []
Exploring Operation: 54-5=49, Resulting Numbers: [95, 7, 49]
Generated Node #2: [95, 7, 49] from Operation: 54-5=49
Current State: 88:[95, 7, 49], Operations: ['54-5=49']
Exploring Operation: 49/7=7, Resulting Numbers: [95, 7]
Generated Node #3: [95, 7] from Operation: 49/7=7
Current State: 88:[95, 7], Operations: ['54-5=49', '49/7=7']
Exploring Operation: 95-7=88, Resulting Numbers: [88]
88,88 equal: Goal Reached
| 4 |
[
48,
17,
81,
12
] | 13 | [
"48*17=816",
"816/12=68",
"81-68=13"
] | Current State: 13:[48, 17, 81, 12], Operations: []
Exploring Operation: 48*17=816, Resulting Numbers: [81, 12, 816]
Generated Node #2: [81, 12, 816] from Operation: 48*17=816
Current State: 13:[81, 12, 816], Operations: ['48*17=816']
Exploring Operation: 816/12=68, Resulting Numbers: [81, 68]
Generated Node #3: [81, 68] from Operation: 816/12=68
Current State: 13:[81, 68], Operations: ['48*17=816', '816/12=68']
Exploring Operation: 81-68=13, Resulting Numbers: [13]
13,13 equal: Goal Reached
| 4 |
[
2,
7,
64,
3
] | 75 | [
"2*7=14",
"64-3=61",
"14+61=75"
] | Current State: 75:[2, 7, 64, 3], Operations: []
Exploring Operation: 2*7=14, Resulting Numbers: [64, 3, 14]
Generated Node #2: [64, 3, 14] from Operation: 2*7=14
Current State: 75:[64, 3, 14], Operations: ['2*7=14']
Exploring Operation: 64-3=61, Resulting Numbers: [14, 61]
Generated Node #3: [14, 61] from Operation: 64-3=61
Current State: 75:[14, 61], Operations: ['2*7=14', '64-3=61']
Exploring Operation: 14+61=75, Resulting Numbers: [75]
75,75 equal: Goal Reached
| 4 |
[
43,
3,
48,
34
] | 51 | [
"43-34=9",
"9/3=3",
"48+3=51"
] | Current State: 51:[43, 3, 48, 34], Operations: []
Exploring Operation: 43-34=9, Resulting Numbers: [3, 48, 9]
Generated Node #2: [3, 48, 9] from Operation: 43-34=9
Current State: 51:[3, 48, 9], Operations: ['43-34=9']
Exploring Operation: 9/3=3, Resulting Numbers: [48, 3]
Generated Node #3: [48, 3] from Operation: 9/3=3
Current State: 51:[48, 3], Operations: ['43-34=9', '9/3=3']
Exploring Operation: 48+3=51, Resulting Numbers: [51]
51,51 equal: Goal Reached
| 4 |
[
84,
17,
72,
16
] | 13 | [
"84+17=101",
"72+16=88",
"101-88=13"
] | Current State: 13:[84, 17, 72, 16], Operations: []
Exploring Operation: 84+17=101, Resulting Numbers: [72, 16, 101]
Generated Node #2: [72, 16, 101] from Operation: 84+17=101
Current State: 13:[72, 16, 101], Operations: ['84+17=101']
Exploring Operation: 72+16=88, Resulting Numbers: [101, 88]
Generated Node #3: [101, 88] from Operation: 72+16=88
Current State: 13:[101, 88], Operations: ['84+17=101', '72+16=88']
Exploring Operation: 101-88=13, Resulting Numbers: [13]
13,13 equal: Goal Reached
| 4 |
[
18,
30,
18,
11
] | 41 | [
"18+30=48",
"18-11=7",
"48-7=41"
] | Current State: 41:[18, 30, 18, 11], Operations: []
Exploring Operation: 18+30=48, Resulting Numbers: [11, 48]
Generated Node #2: [11, 48] from Operation: 18+30=48
Current State: 41:[11, 48], Operations: ['18+30=48']
Exploring Operation: 18-11=7, Resulting Numbers: [48, 7]
Generated Node #3: [48, 7] from Operation: 18-11=7
Current State: 41:[48, 7], Operations: ['18+30=48', '18-11=7']
Exploring Operation: 48-7=41, Resulting Numbers: [41]
41,41 equal: Goal Reached
| 4 |
[
2,
56,
3,
31
] | 43 | [
"2+31=33",
"3*33=99",
"99-56=43"
] | Current State: 43:[2, 56, 3, 31], Operations: []
Exploring Operation: 2+31=33, Resulting Numbers: [56, 3, 33]
Generated Node #2: [56, 3, 33] from Operation: 2+31=33
Current State: 43:[56, 3, 33], Operations: ['2+31=33']
Exploring Operation: 3*33=99, Resulting Numbers: [56, 99]
Generated Node #3: [56, 99] from Operation: 3*33=99
Current State: 43:[56, 99], Operations: ['2+31=33', '3*33=99']
Exploring Operation: 99-56=43, Resulting Numbers: [43]
43,43 equal: Goal Reached
| 4 |
[
29,
13,
66,
52
] | 29 | [
"66-13=53",
"53-52=1",
"29*1=29"
] | Current State: 29:[29, 13, 66, 52], Operations: []
Exploring Operation: 66-13=53, Resulting Numbers: [29, 52, 53]
Generated Node #2: [29, 52, 53] from Operation: 66-13=53
Current State: 29:[29, 52, 53], Operations: ['66-13=53']
Exploring Operation: 53-52=1, Resulting Numbers: [29, 1]
Generated Node #3: [29, 1] from Operation: 53-52=1
Current State: 29:[29, 1], Operations: ['66-13=53', '53-52=1']
Exploring Operation: 29*1=29, Resulting Numbers: [29]
29,29 equal: Goal Reached
| 4 |
[
30,
86,
99,
39
] | 10 | [
"99-86=13",
"30*13=390",
"390/39=10"
] | Current State: 10:[30, 86, 99, 39], Operations: []
Exploring Operation: 99-86=13, Resulting Numbers: [30, 39, 13]
Generated Node #2: [30, 39, 13] from Operation: 99-86=13
Current State: 10:[30, 39, 13], Operations: ['99-86=13']
Exploring Operation: 30*13=390, Resulting Numbers: [39, 390]
Generated Node #3: [39, 390] from Operation: 30*13=390
Current State: 10:[39, 390], Operations: ['99-86=13', '30*13=390']
Exploring Operation: 390/39=10, Resulting Numbers: [10]
10,10 equal: Goal Reached
| 4 |
[
96,
13,
80,
27
] | 48 | [
"13+27=40",
"96*40=3840",
"3840/80=48"
] | Current State: 48:[96, 13, 80, 27], Operations: []
Exploring Operation: 13+27=40, Resulting Numbers: [96, 80, 40]
Generated Node #2: [96, 80, 40] from Operation: 13+27=40
Current State: 48:[96, 80, 40], Operations: ['13+27=40']
Exploring Operation: 96*40=3840, Resulting Numbers: [80, 3840]
Generated Node #3: [80, 3840] from Operation: 96*40=3840
Current State: 48:[80, 3840], Operations: ['13+27=40', '96*40=3840']
Exploring Operation: 3840/80=48, Resulting Numbers: [48]
48,48 equal: Goal Reached
| 4 |
[
55,
3,
40,
59
] | 64 | [
"55-40=15",
"15/3=5",
"59+5=64"
] | Current State: 64:[55, 3, 40, 59], Operations: []
Exploring Operation: 55-40=15, Resulting Numbers: [3, 59, 15]
Generated Node #2: [3, 59, 15] from Operation: 55-40=15
Current State: 64:[3, 59, 15], Operations: ['55-40=15']
Exploring Operation: 15/3=5, Resulting Numbers: [59, 5]
Generated Node #3: [59, 5] from Operation: 15/3=5
Current State: 64:[59, 5], Operations: ['55-40=15', '15/3=5']
Exploring Operation: 59+5=64, Resulting Numbers: [64]
64,64 equal: Goal Reached
| 4 |
[
89,
79,
74,
59
] | 25 | [
"89-79=10",
"74-59=15",
"10+15=25"
] | Current State: 25:[89, 79, 74, 59], Operations: []
Exploring Operation: 89-79=10, Resulting Numbers: [74, 59, 10]
Generated Node #2: [74, 59, 10] from Operation: 89-79=10
Current State: 25:[74, 59, 10], Operations: ['89-79=10']
Exploring Operation: 74-59=15, Resulting Numbers: [10, 15]
Generated Node #3: [10, 15] from Operation: 74-59=15
Current State: 25:[10, 15], Operations: ['89-79=10', '74-59=15']
Exploring Operation: 10+15=25, Resulting Numbers: [25]
25,25 equal: Goal Reached
| 4 |
[
17,
81,
3,
95
] | 85 | [
"17+95=112",
"81/3=27",
"112-27=85"
] | Current State: 85:[17, 81, 3, 95], Operations: []
Exploring Operation: 17+95=112, Resulting Numbers: [81, 3, 112]
Generated Node #2: [81, 3, 112] from Operation: 17+95=112
Current State: 85:[81, 3, 112], Operations: ['17+95=112']
Exploring Operation: 81/3=27, Resulting Numbers: [112, 27]
Generated Node #3: [112, 27] from Operation: 81/3=27
Current State: 85:[112, 27], Operations: ['17+95=112', '81/3=27']
Exploring Operation: 112-27=85, Resulting Numbers: [85]
85,85 equal: Goal Reached
| 4 |
[
67,
90,
69,
42
] | 50 | [
"90-67=23",
"69-42=27",
"23+27=50"
] | Current State: 50:[67, 90, 69, 42], Operations: []
Exploring Operation: 90-67=23, Resulting Numbers: [69, 42, 23]
Generated Node #2: [69, 42, 23] from Operation: 90-67=23
Current State: 50:[69, 42, 23], Operations: ['90-67=23']
Exploring Operation: 69-42=27, Resulting Numbers: [23, 27]
Generated Node #3: [23, 27] from Operation: 69-42=27
Current State: 50:[23, 27], Operations: ['90-67=23', '69-42=27']
Exploring Operation: 23+27=50, Resulting Numbers: [50]
50,50 equal: Goal Reached
| 4 |
[
47,
25,
75,
93
] | 96 | [
"47+25=72",
"75+93=168",
"168-72=96"
] | Current State: 96:[47, 25, 75, 93], Operations: []
Exploring Operation: 47+25=72, Resulting Numbers: [75, 93, 72]
Generated Node #2: [75, 93, 72] from Operation: 47+25=72
Current State: 96:[75, 93, 72], Operations: ['47+25=72']
Exploring Operation: 75+93=168, Resulting Numbers: [72, 168]
Generated Node #3: [72, 168] from Operation: 75+93=168
Current State: 96:[72, 168], Operations: ['47+25=72', '75+93=168']
Exploring Operation: 168-72=96, Resulting Numbers: [96]
96,96 equal: Goal Reached
| 4 |
[
3,
57,
55,
16
] | 29 | [
"57-55=2",
"16*2=32",
"32-3=29"
] | Current State: 29:[3, 57, 55, 16], Operations: []
Exploring Operation: 57-55=2, Resulting Numbers: [3, 16, 2]
Generated Node #2: [3, 16, 2] from Operation: 57-55=2
Current State: 29:[3, 16, 2], Operations: ['57-55=2']
Exploring Operation: 16*2=32, Resulting Numbers: [3, 32]
Generated Node #3: [3, 32] from Operation: 16*2=32
Current State: 29:[3, 32], Operations: ['57-55=2', '16*2=32']
Exploring Operation: 32-3=29, Resulting Numbers: [29]
29,29 equal: Goal Reached
| 4 |
[
21,
99,
99,
6
] | 26 | [
"21+6=27",
"99/99=1",
"27-1=26"
] | Current State: 26:[21, 99, 99, 6], Operations: []
Exploring Operation: 21+6=27, Resulting Numbers: [99, 99, 27]
Generated Node #2: [99, 99, 27] from Operation: 21+6=27
Current State: 26:[99, 99, 27], Operations: ['21+6=27']
Exploring Operation: 99/99=1, Resulting Numbers: [27, 1]
Generated Node #3: [27, 1] from Operation: 99/99=1
Current State: 26:[27, 1], Operations: ['21+6=27', '99/99=1']
Exploring Operation: 27-1=26, Resulting Numbers: [26]
26,26 equal: Goal Reached
| 4 |
[
21,
96,
19,
20
] | 68 | [
"21-19=2",
"96/2=48",
"20+48=68"
] | Current State: 68:[21, 96, 19, 20], Operations: []
Exploring Operation: 21-19=2, Resulting Numbers: [96, 20, 2]
Generated Node #2: [96, 20, 2] from Operation: 21-19=2
Current State: 68:[96, 20, 2], Operations: ['21-19=2']
Exploring Operation: 96/2=48, Resulting Numbers: [20, 48]
Generated Node #3: [20, 48] from Operation: 96/2=48
Current State: 68:[20, 48], Operations: ['21-19=2', '96/2=48']
Exploring Operation: 20+48=68, Resulting Numbers: [68]
68,68 equal: Goal Reached
| 4 |
[
76,
72,
50,
24
] | 22 | [
"76-72=4",
"50-24=26",
"26-4=22"
] | Current State: 22:[76, 72, 50, 24], Operations: []
Exploring Operation: 76-72=4, Resulting Numbers: [50, 24, 4]
Generated Node #2: [50, 24, 4] from Operation: 76-72=4
Current State: 22:[50, 24, 4], Operations: ['76-72=4']
Exploring Operation: 50-24=26, Resulting Numbers: [4, 26]
Generated Node #3: [4, 26] from Operation: 50-24=26
Current State: 22:[4, 26], Operations: ['76-72=4', '50-24=26']
Exploring Operation: 26-4=22, Resulting Numbers: [22]
22,22 equal: Goal Reached
| 4 |
[
48,
78,
38,
96
] | 96 | [
"48*78=3744",
"38*96=3648",
"3744-3648=96"
] | Current State: 96:[48, 78, 38, 96], Operations: []
Exploring Operation: 48*78=3744, Resulting Numbers: [38, 96, 3744]
Generated Node #2: [38, 96, 3744] from Operation: 48*78=3744
Current State: 96:[38, 96, 3744], Operations: ['48*78=3744']
Exploring Operation: 38*96=3648, Resulting Numbers: [3744, 3648]
Generated Node #3: [3744, 3648] from Operation: 38*96=3648
Current State: 96:[3744, 3648], Operations: ['48*78=3744', '38*96=3648']
Exploring Operation: 3744-3648=96, Resulting Numbers: [96]
96,96 equal: Goal Reached
| 4 |
[
9,
88,
48,
69
] | 38 | [
"88-9=79",
"48+69=117",
"117-79=38"
] | Current State: 38:[9, 88, 48, 69], Operations: []
Exploring Operation: 88-9=79, Resulting Numbers: [48, 69, 79]
Generated Node #2: [48, 69, 79] from Operation: 88-9=79
Current State: 38:[48, 69, 79], Operations: ['88-9=79']
Exploring Operation: 48+69=117, Resulting Numbers: [79, 117]
Generated Node #3: [79, 117] from Operation: 48+69=117
Current State: 38:[79, 117], Operations: ['88-9=79', '48+69=117']
Exploring Operation: 117-79=38, Resulting Numbers: [38]
38,38 equal: Goal Reached
| 4 |
[
34,
38,
91,
60
] | 22 | [
"34*60=2040",
"2040-38=2002",
"2002/91=22"
] | Current State: 22:[34, 38, 91, 60], Operations: []
Exploring Operation: 34*60=2040, Resulting Numbers: [38, 91, 2040]
Generated Node #2: [38, 91, 2040] from Operation: 34*60=2040
Current State: 22:[38, 91, 2040], Operations: ['34*60=2040']
Exploring Operation: 2040-38=2002, Resulting Numbers: [91, 2002]
Generated Node #3: [91, 2002] from Operation: 2040-38=2002
Current State: 22:[91, 2002], Operations: ['34*60=2040', '2040-38=2002']
Exploring Operation: 2002/91=22, Resulting Numbers: [22]
22,22 equal: Goal Reached
| 4 |
[
93,
69,
73,
45
] | 71 | [
"93+45=138",
"138/69=2",
"73-2=71"
] | Current State: 71:[93, 69, 73, 45], Operations: []
Exploring Operation: 93+45=138, Resulting Numbers: [69, 73, 138]
Generated Node #2: [69, 73, 138] from Operation: 93+45=138
Current State: 71:[69, 73, 138], Operations: ['93+45=138']
Exploring Operation: 138/69=2, Resulting Numbers: [73, 2]
Generated Node #3: [73, 2] from Operation: 138/69=2
Current State: 71:[73, 2], Operations: ['93+45=138', '138/69=2']
Exploring Operation: 73-2=71, Resulting Numbers: [71]
71,71 equal: Goal Reached
| 4 |
[
73,
25,
51,
1
] | 48 | [
"73+25=98",
"51-1=50",
"98-50=48"
] | Current State: 48:[73, 25, 51, 1], Operations: []
Exploring Operation: 73+25=98, Resulting Numbers: [51, 1, 98]
Generated Node #2: [51, 1, 98] from Operation: 73+25=98
Current State: 48:[51, 1, 98], Operations: ['73+25=98']
Exploring Operation: 51-1=50, Resulting Numbers: [98, 50]
Generated Node #3: [98, 50] from Operation: 51-1=50
Current State: 48:[98, 50], Operations: ['73+25=98', '51-1=50']
Exploring Operation: 98-50=48, Resulting Numbers: [48]
48,48 equal: Goal Reached
| 4 |
[
90,
89,
41,
26
] | 68 | [
"90-89=1",
"41+26=67",
"1+67=68"
] | Current State: 68:[90, 89, 41, 26], Operations: []
Exploring Operation: 90-89=1, Resulting Numbers: [41, 26, 1]
Generated Node #2: [41, 26, 1] from Operation: 90-89=1
Current State: 68:[41, 26, 1], Operations: ['90-89=1']
Exploring Operation: 41+26=67, Resulting Numbers: [1, 67]
Generated Node #3: [1, 67] from Operation: 41+26=67
Current State: 68:[1, 67], Operations: ['90-89=1', '41+26=67']
Exploring Operation: 1+67=68, Resulting Numbers: [68]
68,68 equal: Goal Reached
| 4 |
[
23,
21,
39,
31
] | 36 | [
"23+21=44",
"39-31=8",
"44-8=36"
] | Current State: 36:[23, 21, 39, 31], Operations: []
Exploring Operation: 23+21=44, Resulting Numbers: [39, 31, 44]
Generated Node #2: [39, 31, 44] from Operation: 23+21=44
Current State: 36:[39, 31, 44], Operations: ['23+21=44']
Exploring Operation: 39-31=8, Resulting Numbers: [44, 8]
Generated Node #3: [44, 8] from Operation: 39-31=8
Current State: 36:[44, 8], Operations: ['23+21=44', '39-31=8']
Exploring Operation: 44-8=36, Resulting Numbers: [36]
36,36 equal: Goal Reached
| 4 |
[
19,
60,
36,
57
] | 93 | [
"57/19=3",
"60+36=96",
"96-3=93"
] | Current State: 93:[19, 60, 36, 57], Operations: []
Exploring Operation: 57/19=3, Resulting Numbers: [60, 36, 3]
Generated Node #2: [60, 36, 3] from Operation: 57/19=3
Current State: 93:[60, 36, 3], Operations: ['57/19=3']
Exploring Operation: 60+36=96, Resulting Numbers: [3, 96]
Generated Node #3: [3, 96] from Operation: 60+36=96
Current State: 93:[3, 96], Operations: ['57/19=3', '60+36=96']
Exploring Operation: 96-3=93, Resulting Numbers: [93]
93,93 equal: Goal Reached
| 4 |
[
18,
81,
12,
36
] | 75 | [
"18+81=99",
"36-12=24",
"99-24=75"
] | Current State: 75:[18, 81, 12, 36], Operations: []
Exploring Operation: 18+81=99, Resulting Numbers: [12, 36, 99]
Generated Node #2: [12, 36, 99] from Operation: 18+81=99
Current State: 75:[12, 36, 99], Operations: ['18+81=99']
Exploring Operation: 36-12=24, Resulting Numbers: [99, 24]
Generated Node #3: [99, 24] from Operation: 36-12=24
Current State: 75:[99, 24], Operations: ['18+81=99', '36-12=24']
Exploring Operation: 99-24=75, Resulting Numbers: [75]
75,75 equal: Goal Reached
| 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.