difficulty
stringclasses 3
values | numbers
stringlengths 5
14
| target
int64 1
130
| expression
stringlengths 13
30
| question
stringlengths 354
365
|
|---|---|---|---|---|
medium
|
13 18 10 7
| 48
|
(((13 + 18) + 10) + 7)
|
Calculate 48 using all and only the following numbers: 13 18 10 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
8 1 2 1
| 4
|
(((8 / 1) / 2) * 1)
|
Calculate 4 using all and only the following numbers: 8 1 2 1.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
3 1 4 17
| 29
|
(((3 / 1) * 4) + 17)
|
Calculate 29 using all and only the following numbers: 3 1 4 17.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
15 6 2 4
| 22
|
(((15 * 6) - 2) / 4)
|
Calculate 22 using all and only the following numbers: 15 6 2 4.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
12 6 8 7
| 5
|
(((12 - 6) - 8) + 7)
|
Calculate 5 using all and only the following numbers: 12 6 8 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
4 10 4 10
| 100
|
(((4 * 10) / 4) * 10)
|
Calculate 100 using all and only the following numbers: 4 10 4 10.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
7 3 6 1
| 24
|
(((7 - 3) * 6) / 1)
|
Calculate 24 using all and only the following numbers: 7 3 6 1.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
16 2 15 3
| 99
|
(((16 + 2) + 15) * 3)
|
Calculate 99 using all and only the following numbers: 16 2 15 3.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
12 4 8 3
| 59
|
(((12 * 4) + 8) + 3)
|
Calculate 59 using all and only the following numbers: 12 4 8 3.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
5 5 17 16
| 11
|
(((5 + 5) + 17) - 16)
|
Calculate 11 using all and only the following numbers: 5 5 17 16.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
1 6 12 7
| 49
|
(((1 - 6) + 12) * 7)
|
Calculate 49 using all and only the following numbers: 1 6 12 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
11 5 15 4
| 35
|
(((11 + 5) + 15) + 4)
|
Calculate 35 using all and only the following numbers: 11 5 15 4.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
11 3 2 14
| 49
|
(((11 * 3) + 2) + 14)
|
Calculate 49 using all and only the following numbers: 11 3 2 14.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
16 4 9 7
| 80
|
(((16 * 4) + 9) + 7)
|
Calculate 80 using all and only the following numbers: 16 4 9 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
10 18 15 2
| 14
|
(((10 - 18) + 15) * 2)
|
Calculate 14 using all and only the following numbers: 10 18 15 2.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 12 8 8
| 13
|
(((14 * 12) / 8) - 8)
|
Calculate 13 using all and only the following numbers: 14 12 8 8.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
18 4 9 7
| 9
|
(((18 * 4) - 9) / 7)
|
Calculate 9 using all and only the following numbers: 18 4 9 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
2 2 7 2
| 5
|
(((2 - 2) + 7) - 2)
|
Calculate 5 using all and only the following numbers: 2 2 7 2.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 3 7 18
| 53
|
(((14 * 3) - 7) + 18)
|
Calculate 53 using all and only the following numbers: 14 3 7 18.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
13 14 15 19
| 4
|
(((13 - 14) * 15) + 19)
|
Calculate 4 using all and only the following numbers: 13 14 15 19.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
5 16 12 9
| 83
|
(((5 * 16) + 12) - 9)
|
Calculate 83 using all and only the following numbers: 5 16 12 9.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
3 13 2 14
| 112
|
(((3 + 13) / 2) * 14)
|
Calculate 112 using all and only the following numbers: 3 13 2 14.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
19 3 19 9
| 29
|
(((19 * 3) - 19) - 9)
|
Calculate 29 using all and only the following numbers: 19 3 19 9.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
7 3 10 10
| 10
|
(((7 + 3) * 10) / 10)
|
Calculate 10 using all and only the following numbers: 7 3 10 10.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
9 14 4 8
| 27
|
(((9 + 14) - 4) + 8)
|
Calculate 27 using all and only the following numbers: 9 14 4 8.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
18 2 19 13
| 14
|
(((18 + 2) - 19) + 13)
|
Calculate 14 using all and only the following numbers: 18 2 19 13.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
16 13 3 1
| 7
|
(((16 - 13) + 3) + 1)
|
Calculate 7 using all and only the following numbers: 16 13 3 1.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
6 11 16 11
| 121
|
(((6 - 11) + 16) * 11)
|
Calculate 121 using all and only the following numbers: 6 11 16 11.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
9 3 10 11
| 48
|
(((9 * 3) + 10) + 11)
|
Calculate 48 using all and only the following numbers: 9 3 10 11.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
2 6 12 18
| 2
|
(((2 - 6) - 12) + 18)
|
Calculate 2 using all and only the following numbers: 2 6 12 18.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 1 8 19
| 93
|
(((14 / 1) * 8) - 19)
|
Calculate 93 using all and only the following numbers: 14 1 8 19.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
16 3 11 13
| 72
|
(((16 * 3) + 11) + 13)
|
Calculate 72 using all and only the following numbers: 16 3 11 13.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
13 19 9 4
| 7
|
(((13 - 19) + 9) + 4)
|
Calculate 7 using all and only the following numbers: 13 19 9 4.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 12 5 13
| 10
|
(((14 - 12) - 5) + 13)
|
Calculate 10 using all and only the following numbers: 14 12 5 13.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
5 17 3 6
| 114
|
(((5 + 17) - 3) * 6)
|
Calculate 114 using all and only the following numbers: 5 17 3 6.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
13 15 15 15
| 14
|
(((13 * 15) + 15) / 15)
|
Calculate 14 using all and only the following numbers: 13 15 15 15.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
18 12 7 11
| 24
|
(((18 - 12) + 7) + 11)
|
Calculate 24 using all and only the following numbers: 18 12 7 11.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
2 16 17 12
| 23
|
(((2 + 16) + 17) - 12)
|
Calculate 23 using all and only the following numbers: 2 16 17 12.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
19 1 12 2
| 16
|
(((19 + 1) + 12) / 2)
|
Calculate 16 using all and only the following numbers: 19 1 12 2.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
7 1 10 1
| 17
|
(((7 / 1) + 10) * 1)
|
Calculate 17 using all and only the following numbers: 7 1 10 1.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
11 2 14 4
| 12
|
(((11 * 2) - 14) + 4)
|
Calculate 12 using all and only the following numbers: 11 2 14 4.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
11 8 15 2
| 68
|
(((11 + 8) + 15) * 2)
|
Calculate 68 using all and only the following numbers: 11 8 15 2.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
17 2 12 5
| 17
|
(((17 * 2) - 12) - 5)
|
Calculate 17 using all and only the following numbers: 17 2 12 5.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
13 10 17 19
| 128
|
(((13 * 10) + 17) - 19)
|
Calculate 128 using all and only the following numbers: 13 10 17 19.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
18 7 16 7
| 117
|
(((18 * 7) - 16) + 7)
|
Calculate 117 using all and only the following numbers: 18 7 16 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
9 16 19 17
| 102
|
(((9 + 16) - 19) * 17)
|
Calculate 102 using all and only the following numbers: 9 16 19 17.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
3 8 6 19
| 24
|
(((3 + 8) - 6) + 19)
|
Calculate 24 using all and only the following numbers: 3 8 6 19.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
13 18 11 15
| 27
|
(((13 + 18) + 11) - 15)
|
Calculate 27 using all and only the following numbers: 13 18 11 15.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
17 16 13 9
| 37
|
(((17 + 16) + 13) - 9)
|
Calculate 37 using all and only the following numbers: 17 16 13 9.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
10 2 5 9
| 51
|
(((10 + 2) * 5) - 9)
|
Calculate 51 using all and only the following numbers: 10 2 5 9.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
2 1 17 5
| 25
|
(((2 + 1) + 17) + 5)
|
Calculate 25 using all and only the following numbers: 2 1 17 5.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
6 11 17 2
| 47
|
(((6 * 11) - 17) - 2)
|
Calculate 47 using all and only the following numbers: 6 11 17 2.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
17 2 2 10
| 40
|
(((17 - 2) * 2) + 10)
|
Calculate 40 using all and only the following numbers: 17 2 2 10.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 9 11 11
| 23
|
(((14 + 9) * 11) / 11)
|
Calculate 23 using all and only the following numbers: 14 9 11 11.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
13 19 16 6
| 4
|
(((13 - 19) + 16) - 6)
|
Calculate 4 using all and only the following numbers: 13 19 16 6.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
17 7 17 12
| 84
|
(((17 + 7) - 17) * 12)
|
Calculate 84 using all and only the following numbers: 17 7 17 12.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
13 13 9 4
| 21
|
(((13 + 13) - 9) + 4)
|
Calculate 21 using all and only the following numbers: 13 13 9 4.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 2 10 19
| 89
|
(((14 / 2) * 10) + 19)
|
Calculate 89 using all and only the following numbers: 14 2 10 19.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 15 1 7
| 4
|
(((14 + 15) - 1) / 7)
|
Calculate 4 using all and only the following numbers: 14 15 1 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
5 14 8 7
| 71
|
(((5 * 14) + 8) - 7)
|
Calculate 71 using all and only the following numbers: 5 14 8 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
18 10 6 7
| 98
|
(((18 - 10) + 6) * 7)
|
Calculate 98 using all and only the following numbers: 18 10 6 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
16 3 5 4
| 39
|
(((16 * 3) - 5) - 4)
|
Calculate 39 using all and only the following numbers: 16 3 5 4.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 18 16 3
| 5
|
(((14 + 18) / 16) + 3)
|
Calculate 5 using all and only the following numbers: 14 18 16 3.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
16 19 17 2
| 104
|
(((16 + 19) + 17) * 2)
|
Calculate 104 using all and only the following numbers: 16 19 17 2.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
9 15 13 4
| 11
|
(((9 - 15) + 13) + 4)
|
Calculate 11 using all and only the following numbers: 9 15 13 4.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
8 9 1 13
| 12
|
(((8 - 9) * 1) + 13)
|
Calculate 12 using all and only the following numbers: 8 9 1 13.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
12 5 12 11
| 59
|
(((12 * 5) - 12) + 11)
|
Calculate 59 using all and only the following numbers: 12 5 12 11.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
16 11 18 8
| 17
|
(((16 + 11) - 18) + 8)
|
Calculate 17 using all and only the following numbers: 16 11 18 8.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
12 7 15 5
| 15
|
(((12 - 7) * 15) / 5)
|
Calculate 15 using all and only the following numbers: 12 7 15 5.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
4 7 3 6
| 5
|
(((4 - 7) / 3) + 6)
|
Calculate 5 using all and only the following numbers: 4 7 3 6.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
5 2 12 14
| 33
|
(((5 + 2) + 12) + 14)
|
Calculate 33 using all and only the following numbers: 5 2 12 14.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
10 7 8 11
| 89
|
(((10 * 7) + 8) + 11)
|
Calculate 89 using all and only the following numbers: 10 7 8 11.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
13 7 5 5
| 95
|
(((13 + 7) * 5) - 5)
|
Calculate 95 using all and only the following numbers: 13 7 5 5.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
4 2 14 17
| 33
|
(((4 - 2) + 14) + 17)
|
Calculate 33 using all and only the following numbers: 4 2 14 17.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 12 9 4
| 68
|
(((14 + 12) - 9) * 4)
|
Calculate 68 using all and only the following numbers: 14 12 9 4.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
9 8 10 7
| 49
|
(((9 + 8) - 10) * 7)
|
Calculate 49 using all and only the following numbers: 9 8 10 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
9 10 7 9
| 108
|
(((9 + 10) - 7) * 9)
|
Calculate 108 using all and only the following numbers: 9 10 7 9.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
8 9 1 15
| 13
|
(((8 - 9) - 1) + 15)
|
Calculate 13 using all and only the following numbers: 8 9 1 15.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
6 3 2 2
| 18
|
(((6 * 3) / 2) * 2)
|
Calculate 18 using all and only the following numbers: 6 3 2 2.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
7 11 7 15
| 18
|
(((7 - 11) + 7) + 15)
|
Calculate 18 using all and only the following numbers: 7 11 7 15.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
9 1 7 14
| 3
|
(((9 + 1) + 7) - 14)
|
Calculate 3 using all and only the following numbers: 9 1 7 14.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
8 4 17 7
| 3
|
(((8 - 4) + 17) / 7)
|
Calculate 3 using all and only the following numbers: 8 4 17 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
2 7 7 10
| 20
|
(((2 * 7) / 7) * 10)
|
Calculate 20 using all and only the following numbers: 2 7 7 10.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
7 18 16 16
| 126
|
(((7 * 18) + 16) - 16)
|
Calculate 126 using all and only the following numbers: 7 18 16 16.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
8 13 3 17
| 2
|
(((8 - 13) * 3) + 17)
|
Calculate 2 using all and only the following numbers: 8 13 3 17.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
5 14 4 7
| 2
|
(((5 - 14) + 4) + 7)
|
Calculate 2 using all and only the following numbers: 5 14 4 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
15 12 14 3
| 39
|
(((15 + 12) - 14) * 3)
|
Calculate 39 using all and only the following numbers: 15 12 14 3.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
15 14 4 1
| 25
|
(((15 + 14) - 4) / 1)
|
Calculate 25 using all and only the following numbers: 15 14 4 1.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
4 15 9 7
| 5
|
(((4 - 15) + 9) + 7)
|
Calculate 5 using all and only the following numbers: 4 15 9 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
14 8 15 15
| 22
|
(((14 + 8) * 15) / 15)
|
Calculate 22 using all and only the following numbers: 14 8 15 15.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
11 1 4 14
| 98
|
(((11 * 1) - 4) * 14)
|
Calculate 98 using all and only the following numbers: 11 1 4 14.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
1 3 9 11
| 23
|
(((1 * 3) + 9) + 11)
|
Calculate 23 using all and only the following numbers: 1 3 9 11.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
16 8 14 14
| 2
|
(((16 / 8) - 14) + 14)
|
Calculate 2 using all and only the following numbers: 16 8 14 14.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
17 1 2 12
| 8
|
(((17 + 1) + 2) - 12)
|
Calculate 8 using all and only the following numbers: 17 1 2 12.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
19 9 6 14
| 2
|
(((19 - 9) + 6) - 14)
|
Calculate 2 using all and only the following numbers: 19 9 6 14.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
19 13 1 2
| 5
|
(((19 - 13) + 1) - 2)
|
Calculate 5 using all and only the following numbers: 19 13 1 2.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
8 8 4 7
| 4
|
(((8 / 8) - 4) + 7)
|
Calculate 4 using all and only the following numbers: 8 8 4 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
4 7 12 5
| 45
|
(((4 - 7) + 12) * 5)
|
Calculate 45 using all and only the following numbers: 4 7 12 5.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
10 15 13 10
| 48
|
(((10 + 15) + 13) + 10)
|
Calculate 48 using all and only the following numbers: 10 15 13 10.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
medium
|
17 5 9 7
| 69
|
(((17 * 5) - 9) - 7)
|
Calculate 69 using all and only the following numbers: 17 5 9 7.
Provide your solution as a arithmetic expression (no '=' sign). Use '*' for multiplication and '/' for division.
Your expression must contain all and only the numbers of the list. Numbers should be used exactly as many times as they appear in the list. No number outside the list can be used.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.