instruction
stringclasses 605
values | input
stringlengths 2
1.96k
| output
stringlengths 0
1.51k
| category
stringclasses 613
values |
---|---|---|---|
In this task, you will be given a list of integers. You should remove all of the odd integers from the list(consider 0 an even number). If every integer in the input list is odd then an empty list ("[]") should be returned. Otherwise, answer with the list of even numbers separated by comma inside brackets. | [23, 23, -74] | [-74] | Program Execution 997.json |
In this task, you will be given a list of integers. You should remove all of the odd integers from the list(consider 0 an even number). If every integer in the input list is odd then an empty list ("[]") should be returned. Otherwise, answer with the list of even numbers separated by comma inside brackets. | [-29, -68, -7, 11, 93, -5, 86, 52, -81] | [-68, 86, 52] | Program Execution 997.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-84, -2, -21, 56, -21] | [-2, 56] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-24, 23, 16, 28] | [23, 16, 28] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-73, -54, 96, 3, 86, 4, -97, -97] | [-73, 86, 4, -97, -97] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-81, 69, -7, 77] | [-7, 77] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [34, -18] | [34] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-33, 77, -88, -15, -62, 20, -47, 18] | [77, -88, -62, 20, -47] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [94, 24, -97, -75] | [94, -97] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [66, 49, 49, -94, 57, 26] | [49, 49, -94, 26] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-48, -24, 65, -62, -74, 37, -96, -48] | [65, -62, -74, 37] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [23, -39, 64, -50, 59] | [23, 64, -50, 59] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [28, 22, 2, -93, -30] | [28, 22, 2] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [55, -99, -47, 38, 3, 53, -47, 78, -17, 73] | [55, -47, 38, 53, -47, -17, 73] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [96, -85, 38, -91] | [-85, 38, -91] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [41, 84, -35, -88, -76, -89, -48, -82, 13, 35] | [41, -35, -88, -76, -89, -82, 13, 35] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-63, 19, -99, 59, 45, 44, -49, 43, -20, -36] | [19, 59, 44, -49, 43, -20] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [41, 44, -60, 97, -61, -47] | [41, 44, 97, -61, -47] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-43, -58, 100, -47, 92] | [-43, -58, 100, -47, 92] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-78, -16, -24, -50, 32, -76, -84, -13] | [-16, -50, 32, -76, -13] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-42, -24, -73, -78, 36, 47] | [-73, 47] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-35, 19, 43, 19, -75, 59, 8, 32, 100, -26] | [-35, 19, 43, 19, 59, 8, 32, 100, -26] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [64, 68, -92, 48, 56, 79, 19, -48, 18, -5, -46] | [64, 68, -92, 56, 79, 19, -5, -46] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-66, -64, 70, 45, 72, -77, 72, -43, -99, 85] | [-64, 70, -77, -43, 85] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [1, 32, 76, -32, -76] | [1, 32, 76, -32, -76] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [71, -15] | [71] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [100, 89, -14, 81, 31, 68, 96, -58, 88, -18] | [100, 89, -14, 31, 68, -58, 88] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [9, 6, -9, 15, 45, -20, 70] | [-20, 70] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [43, 76, 42, 50] | [43, 76, 50] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-8, 77, -40, 93, -67, -9, -4, -85, 66, 80, 47] | [-8, 77, -40, -67, -4, -85, 80, 47] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-72, 73, 67, -82, -39, 3, 86, -69] | [73, 67, -82, 86] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [6, -17, -57, 24, -36, -58, 71, -93, 52, 93, 33] | [-17, -58, 71, 52] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [9, -100, -83, -3, -66, 0, 93] | [-100, -83] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [89, 73, 2, 96, 19, 16, -58, -93, 100, -75, 93] | [89, 73, 2, 19, 16, -58, 100] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-71, 42, -13, 89, 73, 27, 75] | [-71, -13, 89, 73] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-59, 35, -49, 97, -22, -98] | [-59, 35, -49, 97, -22, -98] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-81, 14, -75, -29, 35, -76, 19] | [14, -29, 35, -76, 19] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [85, -81, 61, 67, 34, 37, 7, -61] | [85, 61, 67, 34, 37, 7, -61] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [19, -82, -1, -41, -98, 98, 14, 8, 87, 49] | [19, -82, -1, -41, -98, 98, 14, 8, 49] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [31, 32] | [31, 32] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [59, 49, 24, 35, 66, 98, -45, -2, -33] | [59, 49, 35, 98, -2] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-7, 25, 95, 38] | [-7, 25, 95, 38] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-23, -60, 23, -27, 22, -1, 41, -40] | [-23, 23, 22, -1, 41, -40] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [88, 15, -35, -98, 10, 16] | [88, -35, -98, 10, 16] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-1, -12, -55, -11, 58] | [-1, -55, -11, 58] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [66, -9, 8, 95, 74, 90, 3] | [8, 95, 74] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [45, 77, 22, -77, -79, -79, -20, 65, -99, 76] | [77, 22, -77, -79, -79, -20, 65, 76] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-17, -7, 88, 74, 47, -51, 64, 66, 46, -43] | [-17, -7, 88, 74, 47, 64, 46, -43] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-74, -40, 11, -7, -47, 36, 82] | [-74, -40, 11, -7, -47, 82] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-50, -6, -57, -5, 83, 7] | [-50, -5, 83, 7] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [47, -12, -68, 41, -8, 13, -21, 78, -86, 81] | [47, -68, 41, -8, 13, -86] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [1, 14, 100, -23, -17] | [1, 14, 100, -23, -17] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-56, 88, -29] | [-56, 88, -29] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-61, -32, 26, -7, 0, 92, 90, 72, 70] | [-61, -32, 26, -7, 92, 70] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [43, -59, 45, 70, -25, -58, 1, -53] | [43, -59, 70, -25, -58, 1, -53] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-56, 73, -73] | [-56, 73, -73] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [10, 67] | [10, 67] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-26, 62, -90, -55, 0, 84, -28, 65, 8] | [-26, 62, -55, -28, 65, 8] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-99, -79, 39, -26, 31, -8, 29] | [-79, -26, 31, -8, 29] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [75, -4, -83, 49, -49, 80] | [-4, -83, 49, -49, 80] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [42, -80, -66, 46, -59, -12, -17, -88] | [-80, 46, -59, -17, -88] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [81, -68, -85, -50] | [-68, -85, -50] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-69, -12, 14, 58] | [14, 58] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [41, -68, -54] | [41, -68] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [20, 47, -89, 25] | [20, 47, -89, 25] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-20, -87, 71, -33, 26, -47, 21, -15, -84] | [-20, 71, 26, -47] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [9, -99, -41, 99, 82, 59, -63, 89, -32, -96] | [-41, 82, 59, 89, -32] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [4, 38, 16, -84, -100, 60, 85] | [4, 38, 16, -100, 85] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [4, 75, -4, -21, -46, -53, -17, -38, -59] | [4, -4, -46, -53, -17, -38, -59] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [74, -61, 31, -32, 83] | [74, -61, 31, -32, 83] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [33, 4, 24, -1, 96, -89, 47, 79, -15] | [4, -1, -89, 47, 79] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-88, -3] | [-88] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-75, 75, -34, 24, -43, -41, -53, -17, 34, -72] | [-34, -43, -41, -53, -17, 34] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-95, -60, 77, -87, -55, 99, 33] | [-95, 77, -55] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-38, 31, -100] | [-38, 31, -100] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [77, 18, -81, -36, 7, -58, 92, -43, -67, -88] | [77, 7, -58, 92, -43, -67, -88] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [96, -32, -33, -95, 98] | [-32, -95, 98] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [95, -59, 94, 15, -26, 22, 26, -16, -13] | [95, -59, 94, -26, 22, 26, -16, -13] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [59, -16, 84, -62, -55, -55, -42, -16, 90, 24] | [59, -16, -62, -55, -55, -16] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-87, -98, 9] | [-98] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [68, -63, -99, 77, 50] | [68, 77, 50] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-72, 22, -2, 91, 30, -87] | [22, -2, 91] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [-63, -78, 92, 23, -75, -70] | [92, 23, -70] | Program Execution 998.json |
In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. | [72, 90, -90, 38, -28, -36, -40] | [38, -28, -40] | Program Execution 998.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-36, 30], [-42, 23, 45, -19], [40, 21, 3], [5, -36, 46, -27, -22], [44, -8, -29, 16], [43, 20, 5], [2, -6, 44, -14], [-49, 9, 27, -10, -41], [-11, 40, 17, -38, 38], [20, -50, 19]] | [-1080, 825930, 2520, -4918320, 163328, 4300, 7392, -4881870, 10801120, -19000] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-22, 45, 11], [25, -44, 27, 45], [33, -27, -10, -7], [-16, 41], [10, 2, 10], [-13, -12, -36, -11]] | [-10890, -1336500, -62370, -656, 200, 61776] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[39, -24], [-22, 39, 26, -11, 39], [-32, 24, 2, -45], [-23, 39, -46, -43, -11], [13, 3]] | [-936, 9570132, 69120, 19516926, 39] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[8, -22, -22, -7, -48], [36, 26, 0, 8, 42], [-41, 0], [14, 50, -17], [46, 49]] | [1300992, 0, 0, -11900, 2254] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-30, -7], [8, -18, -8], [-35, 7, -11, -48, -45], [39, 19, 12], [18, -30, 11, -7], [-28, -27, 9], [-46, -14, 22, 48], [-22, -38, -16, 31], [33, -33, -41]] | [210, 1152, 5821200, 8892, 41580, 6804, 680064, -414656, 44649] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[29, 18], [10, 12, 40], [40, -14, -43, -4, 29], [-45, -38, 8, -32, 5], [-5, -44, 23, -15], [-49, -7], [-30, 40, -32, 30], [-17, -11], [31, -23, -44, -40, -26], [23, 43, -44, -22, 5]] | [522, 4800, -2793280, -2188800, -75900, 343, 1152000, 187, 32626880, 4786760] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[13, -5, 19, 43, 46], [6, 46, 40], [23, -45, -9, -26, -3], [-40, 1, -26, 22], [23, -34, 10], [24, 21], [-4, -28], [-22, -41]] | [-2442830, 11040, 726570, 22880, -7820, 504, 112, 902] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-11, 13, 20, 10, -36], [33, 19, -7, 9, -20], [-45, 10, 47, 29], [1, -19], [21, 49], [-9, -36]] | [1029600, 790020, -613350, -19, 1029, 324] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-27, 45, 12], [-21, -31, 9], [1, -50], [16, 5, 14], [15, -20, -21, -39, 17], [-8, -28, 36]] | [-14580, 5859, -50, 1120, -4176900, 8064] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[25, -34], [26, -13], [28, 21, 36], [-21, 14], [45, 35, 41], [29, -40, -20]] | [-850, -338, 21168, -294, 64575, 23200] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-41, -12, -38, 47, -19], [-33, -27, 32, -41, -46], [-11, 18, 18, -29], [-5, -31, -3], [30, 3], [-8, 13, 25], [-37, -7, 46]] | [16695528, 53773632, 103356, -465, 90, -2600, 11914] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-24, -15], [-38, -50, 42, 45]] | [360, 3591000] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-8, -11], [-36, 20, -25], [-27, 46, 33, -30, -16], [11, -3, 24, -38], [-29, -43], [1, 42, -1], [-19, 46, -8, -1]] | [88, 18000, -19673280, 30096, 1247, -42, -6992] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-45, 29, 25], [-33, -38, -21, -5], [12, -25, -44, 1], [-45, -43, -9, 37], [16, -22, 40, 6], [36, 22, 27, -15], [-11, 30, 45, 48, -7]] | [-32625, 131670, 13200, -644355, -84480, -320760, 4989600] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-25, -6], [29, -36, 13, 9, 8], [6, -4], [-3, -37, -3, 15], [15, -13, 45]] | [150, -977184, -24, -4995, -8775] | Program Execution 999.json |
In this task you will be given a list of lists, of numbers. For every inner list, you should multiply every number in that list and put the results in your answer. The output should be a list of numbers with the same length as the number of the lists in the input list. | [[-5, 6, 30, -23], [-7, -38], [20, 50, 13], [-7, 30, -23], [45, -26, 36, -48, -28], [17, 13, -10, 1, -30], [-5, 49, -10]] | [20700, 266, 13000, 4830, -56609280, 66300, 2450] | Program Execution 999.json |