input
stringlengths
863
1.14k
output
sequencelengths
1
1
id
stringlengths
40
40
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[47, 29, -47, -37, 16], [-12, -17], [24, -6, 43, 17, 10]] Output:
[ "[2370257, -17, 731]" ]
task852-6c245a06898c439a93bf3ae5cee00271
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-46, -5], [-24, -10, -40, -31], [9, -20, -49, 8], [-30, 42], [42, -29], [-15, -24], [-50, 13], [-28, 4, -40, -40], [-33, -38, 22, -38, 9], [-33, -24, -24, 32, -5], [-5, -45, -8, 7, 34], [28, 14, -33, -21, 14], [-29, 41, 17, 18], [20, -41, 8, -16], [48, -4, -23, -9, -15]] Output:
[ "[-5, -31, -441, 0, -29, -15, 13, 0, -297, 165, 1575, 693, -20213, -41, -3105]" ]
task852-b882546ba6dc496799acf6334a692404
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[15, -33], [-7, -7, 44, 19], [-39, -38], [46, 49, -21, 13], [10, -9, 50]] Output:
[ "[-495, 931, -39, -13377, -9]" ]
task852-c7b0c18c6ed44ed08799c92249a51d69
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-9, 5, 8, -24, 39], [-49, -23, -49, -23], [33, 35, 48, -28, -14], [5, 36]] Output:
[ "[-1755, 1270129, 1155, 5]" ]
task852-427b6c5dc97848d58ccad9bac7e0fe93
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[25, -49], [-17, 41, -3, -43], [-44, 14, 44, 40, 32], [46, -25, 31], [-4, -11], [-33, -25, 16, 4], [-49, 45, 31, 11], [24, 31, 21, 45], [18, 3, -32, -49, -33], [-37, -32], [-12, -28, 50, -13], [0, -34], [18, -4, 32, 27], [17, 43, 9]] Output:
[ "[-1225, -89913, 0, -775, -11, 825, -751905, 29295, 4851, -37, -13, 0, 27, 6579]" ]
task852-3ccf28bbccd14512bd5da47b4827f853
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[3, 21, -6, -21, 25], [8, -29, 25], [-39, 50, -2, -3, 32], [31, -18], [-50, 36, -26, -28, -44], [-30, -34, -4, -41], [-35, 7], [-32, -5, -10, -22, -33], [-39, 43], [1, -42, -40, 22], [14, 40, -50, 33]] Output:
[ "[-33075, -725, 117, 31, 0, -41, -245, 165, -1677, 1, 33]" ]
task852-42fd9684823f4a98a6451afc2f6bd560
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-37, 32, -35], [42, -40, -47], [-23, 21, 5, -6, 3], [-25, -49, 0], [-41, -27, -36, -41, -48], [23, 6, -22, 49], [42, 48, -11, 40, -36], [14, 36, -35, -41, 31], [-31, 33, 46, 37], [43, 42], [25, 29, -34]] Output:
[ "[1295, -47, -7245, 1225, -45387, 1127, -11, 44485, -37851, 43, 725]" ]
task852-193f9557d0e64d029fe4959127a9ab45
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-45, -43, -30, 5], [11, -17, -49], [34, -3, 6, -8], [-18, 16], [-31, 46], [25, 15, 16, 36], [-8, -38, -44, 14, -49], [-10, -26], [-3, 8, 29], [39, 30], [5, -2, -20, 11, -10]] Output:
[ "[9675, 9163, -3, 0, -31, 375, -49, 0, -87, 39, 55]" ]
task852-0bf5c8f4bb8a42f2b4e1a9f87e472796
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[7, 12, 38, -20], [-23, 12, 7], [-35, -12, 2, 25]] Output:
[ "[7, -161, -875]" ]
task852-50cac867e38041a6a62357e96155bfb0
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-19, 25], [-32, 41, 50, 14, 12], [48, 20, -42, 50], [25, -47, -6, 1], [15, -46, -45], [-14, -18, 3, 25]] Output:
[ "[-475, 41, 0, -1175, -675, 75]" ]
task852-c168ccd4bce444ec8884e1c69d9f1c2e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[7, -18], [-44, -2, 24, 45], [-29, 30], [-39, 19, -49, -27, -39]] Output:
[ "[7, 45, -29, 38233377]" ]
task852-383a3756f1844b18b97e149c0de0ea4f
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-1, 21, -4, 11, -23], [-37, 23, 45, 17, 15], [-14, 26], [22, 9, -26], [23, 49, 6], [36, 17, 8, 2, -27], [33, -44], [26, -20, -12], [-19, 33, -15]] Output:
[ "[5313, -9765225, 0, 9, 1127, -459, 33, 0, 9405]" ]
task852-83527308b1c54b07b6806cdc19cda0c8
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-6, 50], [-3, 23], [-29, -31, -24, 41], [-48, 5, 38], [29, 33, -3, 1], [50, -18, 31], [-9, 9], [24, -18, 36, 46, -32]] Output:
[ "[0, -69, 36859, 5, -2871, 31, -81, 0]" ]
task852-b4209e46e0df4eb89b3b25f2b98b7c40
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-14, -18, -8, 30], [-46, -4, -30, 45], [-3, 7, -25], [28, -39], [-29, 25, 29], [13, -50], [17, 4], [12, -13, 24, 39], [-6, 9, 13], [25, -2], [-43, 46, -39, 14]] Output:
[ "[0, 45, 525, -39, -21025, 13, 17, -507, 117, 25, 1677]" ]
task852-cde0ef3cff414edfb66bc8028f83e8a2
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[17, 45, 13, 38, -38], [24, -16], [33, -47], [38, 40, -26, -5], [-8, -23, -8, -37], [-5, 50, 24], [23, -46, -35, -34, 5], [45, -41, -29, 14, 22], [27, 6, -7], [-32, 13, 34, -45, -31], [7, -5, 22, 43, -39], [-41, 11, 12], [22, -27, 9, 3, -10], [-5, -50, 6, -32, -49]] Output:
[ "[9945, 0, -1551, -5, 851, -5, -4025, 53505, -189, 18135, 58695, -451, -729, 245]" ]
task852-4c4f4c2ffd454c129ff2d52f420e2287
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-40, 34, 21, -8, 4], [-40, 35], [25, 8, 28], [-39, -25, -29, 5, -6], [45, -7, 0, -29], [15, 10], [11, -25, 37], [37, -5, 7, -26, -29], [-9, -17, 41, -9], [19, -45, 26, -17], [25, -37, -41, 33, 25], [-43, 49, -27, -7, 2], [23, -44, -3], [-44, -4, 11, 16, -25]] Output:
[ "[21, 35, 25, -141375, 9135, 15, -10175, 37555, -56457, 14535, 31288125, -398223, -69, -275]" ]
task852-cb184ccc461e49e6abf16a7f36378beb
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-32, -34, 29], [25, -8, 1], [-29, -19, 33, -37, 2], [-30, -20, -47, -10], [42, 4, 15], [-43, -41, 6, -22, -46], [18, 49, 9, -39], [35, -33, -30, 19], [19, -28, -27, -50], [-15, -40, 29, -27, -27], [29, -10, -36], [-41, -4]] Output:
[ "[29, 25, -672771, -47, 15, 1763, -17199, -21945, -513, -317115, 29, -41]" ]
task852-27d62c605f2a42afae413c268450068f
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[50, -8, -45], [18, 48, -6, 23], [-49, 19], [-34, -47, 8, -13], [-50, 14, -3, 44, -31], [-27, 2], [-11, 28, -31], [-26, -40, 13, 2, -37], [8, 30, -32, -5], [-23, 47, 39], [-5, 6, 41]] Output:
[ "[-45, 23, -931, 611, 93, -27, 341, -481, -5, -42159, -205]" ]
task852-53efba7821254c0fadc32443518d6107
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[13, 49], [19, -14, -35, -39], [-9, 3, 47], [-43, -11, 47, 22], [18, -18, 9], [6, -23], [-36, -14, -46, 0, 44], [-18, -2, -36, 31], [11, 29, 30, 50], [-37, 31, -11], [-33, -19, -39, 29], [0, -9, 13], [19, -11, 45, -39]] Output:
[ "[637, 25935, -1269, 22231, 9, -23, 0, 31, 319, 12617, -709137, -117, 366795]" ]
task852-96523c377ef3414f916d4ab24174065e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[27, 31], [30, 37, -20, -49], [-41, 35], [-49, -30, -19], [5, -43, 12], [-42, 23, 16, -44, -39]] Output:
[ "[837, -1813, -1435, 931, -215, -897]" ]
task852-1ac7e3f000584423810188d64ee27f41
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-28, -20], [-29, 36, -4], [8, -47, -7], [-5, -7], [31, -19, -38, 19], [16, -41, -33, -33], [-6, 37], [-32, 14, -17, 16, 6], [-5, 48], [12, 43]] Output:
[ "[0, -29, 329, 35, -11191, -44649, 37, -17, -5, 43]" ]
task852-3530b98a99ef429c95eea184ff11967b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-11, -47], [46, -13, 38, 41, 49], [12, -23, 26, -7], [-29, 3, -19, -33, 32], [44, -30, 12, 26]] Output:
[ "[517, -26117, 161, -54549, 0]" ]
task852-a3fa8e86f2c7456c80ef6cd3534a3d96
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[25, 36, 16, -34], [-47, -35, -50, -29, -35], [0, 24, -2, -43], [50, -20, 45, -40], [10, -9, 13, -23], [13, -31, -7], [-47, -7, -20, 15], [-48, -48, 11, 32, 23], [36, -46], [-20, 47, 26, 44, -20], [24, -21, -37, -20], [0, 26, 42, -11], [-31, 2]] Output:
[ "[25, 1669675, -43, 45, 2691, 2821, 4935, 253, 0, 47, 777, -11, -31]" ]
task852-1c6ee2e8b214400a89b7ffeae651053a
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-22, -15, 2, -39, 10], [-40, 42, 45, -9, -10], [19, -7, 8, 4, -5], [-33, 47, -31], [-16, -9], [-48, 43], [-30, 50], [-36, -7, -32, -10], [12, 29, -10, -44, -15], [17, 11]] Output:
[ "[585, -405, 665, 48081, -9, 43, 0, -7, -435, 187]" ]
task852-446af62bc3a24aaabd3a17aaec51d475
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[1, -18, -29, -24], [34, 48, 47], [18, 13]] Output:
[ "[-29, 47, 13]" ]
task852-199aa5abb7224f1bb8d6664c8149cd11
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[13, 11, 20, 3, 11], [-13, 39, -17], [15, -46], [-47, 37], [33, -9, 36, -33], [-41, 10, 33, 30, 10]] Output:
[ "[4719, 8619, 15, -1739, 9801, -1353]" ]
task852-b1c4a82ecf4546fab1c4887f0498e05b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-34, -38, -25, 23], [39, -11, -20, -8, 14], [42, 4, 45, 9, 22], [-12, -46, -26, 41, 31], [-28, 36, 33], [31, 18], [19, -34], [-50, -8, 6, -24, 13], [-39, -49, 37, -23, -18], [-8, -30, -42], [43, -44, 13, -30], [-41, -14]] Output:
[ "[-575, -429, 405, 1271, 33, 31, 19, 13, -1626261, 0, 559, -41]" ]
task852-203ae05451ca430282e98bddf9d65296
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-37, 29, 3], [1, -16, -7], [-3, 26], [47, 7], [-41, 25], [-46, -32, 4, 39]] Output:
[ "[-3219, -7, -3, 329, -1025, 39]" ]
task852-4b75aea182b94255ab7d4b597f827580
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-1, -8, 41, -45], [-33, -25, -20, -29], [41, 2], [-2, -39], [-8, 24, -29, -35, 22], [35, -3, 10, -5], [3, 26], [38, 11, 39, 7, 7], [-27, 12, -11, -43]] Output:
[ "[1845, -23925, 41, -39, 1015, 525, 3, 21021, -12771]" ]
task852-76224452f9c741d090c8b671a6f8be8d
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[14, 0, 45, -13, -18], [-15, -30], [-11, 35], [-48, 40, 34], [4, 39, 7], [-46, -29, 50, 27], [45, -48, -20], [-47, 27, -24], [25, -25, -32, 25, -6], [-23, 3, -12], [-33, -27, 48, -12, -36], [35, -29, 46], [-27, 34, 22]] Output:
[ "[-585, -15, -385, 0, 273, -783, 45, -1269, -15625, -69, 891, -1015, -27]" ]
task852-fce551b6be53455295288329f117501d
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[30, -41, -35], [-42, -3], [41, 45, 17, -37, -48], [-46, -30, 39], [-48, 31, -34], [48, -38, -11, -13]] Output:
[ "[1435, -3, -1160505, 39, 31, 143]" ]
task852-031c7f4235fb49a2bec0001f0e3104f4
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-7, -28], [15, 5, -48, -8], [-15, -47], [12, 34, 36, 31, 30], [48, 26, 12], [43, -24, 47], [16, -24, 4], [-28, 34], [-47, 22, 25], [12, -34, -2]] Output:
[ "[-7, 75, 705, 31, 0, 2021, 0, 0, -1175, 0]" ]
task852-3452fa3e513d4bc3a870837b40d45d2f
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[29, -8], [4, -30, -20, 42, 26], [-34, -45, -2, -44, 29], [-25, -30, -33], [-12, 38, -8, 26], [-30, 24]] Output:
[ "[29, 0, -1305, 825, 0, 0]" ]
task852-42f999a99bbf4bfdab7bda054dbe5130
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-6, -36, 41, 21], [26, 12, 25, -38], [21, 31, -32, 48], [-7, -12, 14], [4, 14, 28, -23], [-48, 21], [-36, 20, -18], [-28, -32], [-18, -43, 33, -25], [1, -28], [12, -45, -31, -18], [48, -35, 24]] Output:
[ "[861, 25, 651, -7, -23, 21, 0, 0, 35475, 1, 1395, -35]" ]
task852-a62793ec3a0c4668bf4885443ddaf6a3
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[45, 1, 4, -8, 46], [-27, 26, -14], [-4, 6, 39, 23], [4, 7, -44, -47], [-22, 8, 28, 7]] Output:
[ "[45, -27, 897, -329, 7]" ]
task852-257b289faaed4e56bb20573a67b4175f
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[19, 19, 36, -7], [-34, 20, 44], [47, 41, -18, 9, -18], [38, 39, 18, -9], [-46, -29, 43, 34], [-35, -22], [-8, 36, -11, -50, 42], [-44, 32, -49], [15, -23], [-45, -8, 49], [3, 50, 19, -21, -14], [18, -13, -3, -11], [-37, 38]] Output:
[ "[-2527, 0, 17343, -351, -1247, -35, -11, -49, -345, -2205, -1197, -429, -37]" ]
task852-83e946b370974e06bdf6d26d5ee78c8e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-42, -9], [10, 11, 6, 12], [-40, 28, 17, 15, -18], [16, -39, -13]] Output:
[ "[-9, 11, 255, 507]" ]
task852-fece756dd45a4da7af4c996da12d0431
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[30, -30, 48, 21, -28], [-27, 13, -21, -45, -8], [6, -47], [-40, 6, 3, -25, -40], [23, 3], [14, -44, -47, -11, 2], [-10, 18, 22, -31], [24, 38]] Output:
[ "[21, -331695, -47, -75, 69, 517, -31, 0]" ]
task852-8334b158db3a46f49e85d5cef91e7331
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[11, 50], [28, 35, -30, -7, 11], [18, -28, 9], [3, -1, -6, -24], [8, -25], [28, -40, 42, -39], [30, 2, -22, 42, 17], [-10, -17, 30, -27], [-5, -16, -41, 22, -28], [-12, -1, -32, -40], [45, 32], [37, 2, 0], [-2, 30]] Output:
[ "[11, -2695, 9, -3, -25, -39, 17, 459, 205, -1, 45, 37, 0]" ]
task852-f0c398b2a6e944c99f71fae5faeb47f4
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-28, 44], [6, -24, 45, -38, -21], [49, 32, -20, 3], [27, 21, 38, 44], [49, -2], [-43, -6, 48, -38, -12], [-47, 49, -45, -42, 38], [-27, 3], [-27, -48, 24, -37, 25], [20, 17, -11], [49, -5], [-33, -18, -48], [-21, 28], [37, -39], [22, 40, -35, -25]] Output:
[ "[0, -945, 147, 567, 49, -43, 103635, -81, 24975, -187, -245, -33, -21, -1443, 875]" ]
task852-3bde038d66d548a4ad1e2eed2886c11b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-29, -25, -3, 29], [19, -29, 0, -48, -6], [-33, -2, -1, 27], [26, -29, -11, 27, -6], [-18, 3, 47], [-17, -5, -10, 30], [-13, -20, 33, -50, 39], [-49, -42, -18, 3], [6, 20]] Output:
[ "[-63075, -551, 891, 8613, 141, 85, -16731, -147, 0]" ]
task852-0618410bd0734f5d9d2f044f5857d2bb
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-14, -49], [-6, 17, -33, -42, -45], [-8, -23], [6, 45, 49, 30, -31], [13, 36, 21], [-42, -11, 11], [-47, -30, -16, -38, 28], [-1, 8, -32, -25], [-30, 7, 29, 43], [38, -21, 7]] Output:
[ "[-49, 25245, -23, -68355, 273, -121, -47, 25, 8729, -147]" ]
task852-9e86d73a194744b7bf2558adc4da89f3
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[31, 2], [33, 14, -38], [2, 6], [-33, 41, -36, 45, -5], [-31, 17, -24, 18, -46], [-7, -8, -37, -7], [-31, 18], [43, 19, 34], [-38, -1, 7], [23, -11, -36, -3], [24, -7], [5, -10, -33, -43]] Output:
[ "[31, 33, 0, 304425, -527, -1813, -31, 817, -7, 759, -7, 7095]" ]
task852-61acff5aaa4146f9b358936c8fb50344
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-18, 37, 18], [8, -14], [-37, 3, 15], [43, 31, 22, 50], [-2, -31], [18, 43, -46, -10, 37], [-44, 40], [8, 22, -21, 13, -33], [-47, 4], [13, -43, 18, 40, -1]] Output:
[ "[37, 0, -1665, 1333, -31, 1591, 0, 9009, -47, 559]" ]
task852-356cdff01f924463af883c2df40c14c1
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[33, -41, 14, -40], [-1, -28, 30, 42], [27, 48], [0, 10], [14, 37, -33, 36, -17], [48, -46, 9, 37]] Output:
[ "[-1353, -1, 27, 0, 20757, 333]" ]
task852-b71336d9dd49467ead3fd30031c2c5b7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-45, -35, 46], [41, -5, -10, -39, -20], [16, -43, -29, 23], [28, -24, 25], [10, 15]] Output:
[ "[1575, 7995, 28681, 25, 15]" ]
task852-edb2c6add57b405580e3b5e7f9adbfff
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[43, -29, 0, 40, 1], [42, -1, -25, 50], [23, -6, 10, -26], [-36, 24], [45, 18, 3, 0]] Output:
[ "[-1247, 25, 23, 0, 135]" ]
task852-e79da635c98e45bcbb3a0f3e0383d758
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[30, 41, 10, -4], [44, -47, 44, -45, -6], [24, 5, -22, -50], [-1, -27, 31], [-34, -42, -5, -42, 34], [-39, -20, -10, -10], [28, 20, -33], [41, 2, -45, -44, -30], [-43, 15, 24, -11, -37], [5, -7, -10], [-15, 19, -19, -20]] Output:
[ "[41, 2115, 5, 837, -5, -39, -33, -1845, -262515, -35, 5415]" ]
task852-2a24a8e544dd48c78f6dc97d3609656a
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[20, 20, -32, 46, -3], [38, -12, 3, -6, -43], [48, 37]] Output:
[ "[-3, -129, 37]" ]
task852-74df82703eed4f989d8d086f508725bb
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-10, -50], [-46, -23, -27, -39, 7], [22, -31, 6, 35, -26], [-28, 48, 16, 42], [-26, -41, -1, -4, 42], [29, 16, 19], [1, 14, -29], [-37, -45, -3, 43, -8], [-3, -20, 36, -34, 4], [19, -8, 41], [5, 27, 30], [45, 6, -31, -24, 43], [33, -6, 2]] Output:
[ "[0, -169533, -1085, 0, 41, 551, -29, -214785, -3, 779, 135, -59985, 33]" ]
task852-72c5a510d41240828682782006af65e9
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-6, -14, 26, -25], [34, -42, 47], [19, -11, -17, -37]] Output:
[ "[-25, 47, -131461]" ]
task852-922b92e9e08b4cc08ec60c493ea384df
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-16, -38, -4, 0], [27, 5, -12], [31, -15, -34, -5, 23], [1, 50, 10], [29, -42, 43], [-41, -2, 41, -42]] Output:
[ "[0, 135, 53475, 1, 1247, -1681]" ]
task852-a934983df9914b029bdc5ad0c96aebf4
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[2, -13], [27, 41], [-39, 17, 2], [6, -38, 6, -4, 49], [47, -19, -30, 27]] Output:
[ "[-13, 1107, -663, 49, -24111]" ]
task852-08fee483c8324731b8e4a1a2c3438e90
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-42, 30], [0, 48, -23, -1, -25], [24, -32], [-11, -24, 29, -36], [37, 48], [-27, -44, 23, 36]] Output:
[ "[0, -575, 0, -319, 37, -621]" ]
task852-5df5b5e67915446ab90c4c0cdab231da
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[29, -30, -5, -47], [14, 37], [-26, -2, -3, 50, 29], [31, -22, 19], [-35, -33, 11, 34], [24, 7, 30, -8, -45], [40, -33, 4, -14, -1], [13, 50, -39], [-19, 26], [-24, -29]] Output:
[ "[6815, 37, -87, 589, 12705, -315, 33, -507, -19, -29]" ]
task852-f889beeea2d641528c8ab99f599b0cac
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-33, 12, -44, -26], [6, 35, -7, 41], [-37, -10, -19, 11], [11, -17, -25, -38, 8], [-43, -15, 45, -24], [-29, -1, 20, -6], [33, 47, 1, 10, 15], [29, 19], [-45, 48, -44]] Output:
[ "[-33, -10045, 7733, 4675, 29025, 29, 23265, 551, -45]" ]
task852-1b9301f8f3ca431594650defdc9d923b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[27, 22, 36, 16, 38], [5, -12, 20, -1, 2], [29, -41]] Output:
[ "[27, -5, -1189]" ]
task852-f8290a5603fb4d8695f8d4c89e44ffde
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-15, -21, 8, 34], [42, 19], [7, 30]] Output:
[ "[315, 19, 7]" ]
task852-48a95d17cc2c4a21be4750e48b399a0b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-5, -43, 32, 24], [-15, 43], [-8, -50], [24, -15, -44, -48, 22], [39, 18, -20], [-8, -42, 24], [4, 19], [50, 47, -41, -24, 27]] Output:
[ "[215, -645, 0, -15, 39, 0, 19, -52029]" ]
task852-5e78eeaf51704534b4ea2fb411b4a16f
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[10, -8, 2, 21], [-7, -13, -11], [-40, -21, 0, 41], [38, 38, -12, 31], [7, 4, -8, 12, 31], [26, 20, -7], [0, 0, -24, 0, -16], [-35, -16, 4, 10, -29], [-10, 12], [-13, 13, 42], [19, -31, -5], [-30, -25, -43], [-49, 6], [-29, -45, 9, -16]] Output:
[ "[21, -1001, -861, 31, 217, -7, 0, 1015, 0, -169, 2945, 1075, -49, 11745]" ]
task852-2852a90b96ae4553ac35e5c423352834
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-31, 42], [6, -33, 1], [-1, 1, 42], [-33, 39, -34, -27], [-26, -23, -31, -15, -45], [-48, 46, 36, -43], [6, -47], [-6, -48, -34, -45], [39, -50, -24], [-37, 10], [9, -33, -41, 22, 45], [31, -20, 14, 31], [-10, 43, 50]] Output:
[ "[-31, -33, -1, 34749, 481275, -43, -47, -45, 39, -37, 547965, 961, 43]" ]
task852-4d09b79cbdb44e2c87c1cb109e22a597
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[21, -19, 34], [28, -44, -4], [32, -20, 39, -24, -25], [-38, 10, -38, -37], [35, 23, 8], [-18, -50, -8, -48], [46, -20, -33, 42, -23]] Output:
[ "[-399, 0, -975, -37, 805, 0, 759]" ]
task852-768ba60074b143aaa0381ac239bb167b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-30, -38, 39], [40, -36, 20, 17], [-47, -17, 46, -25, -7], [-50, 23, -26, 1], [-43, -28], [7, 38], [-48, 16, 17, 30], [-34, 2], [6, 49, -42, 3, 22], [33, 20, 43, -8]] Output:
[ "[39, 17, 139825, 23, -43, 7, 17, 0, 147, 1419]" ]
task852-626156caa46e49bb8a6dd8131f0d367a
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-38, -29], [16, -22, -2], [30, 32], [39, -35, -43], [-5, -37, 44], [-47, 5], [43, 3], [-38, -46, -1, 39], [17, -11, 29, -47], [-18, 7, -14], [-11, -48], [18, -48, 29, 47, 19], [27, 50, -3], [36, 26]] Output:
[ "[-29, 0, 0, 58695, 185, -235, 129, -39, 254881, 7, -11, 25897, -81, 0]" ]
task852-fc85daed54f54f258318747c275a6ba1
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[37, -47, -12, -35, -3], [-4, -17, -5, 14], [45, 40]] Output:
[ "[-182595, 85, 45]" ]
task852-11d2d4dc8aca4f869409c3bb0ebdfff7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[4, 24, -12, -19], [-38, -39], [-35, -11, 15, -35, 24], [22, -22, -10, -49, -41], [16, -44, 29, -24, -49], [-10, 38, -34, -17, 0], [15, 28, -29], [-8, 9, 20, -40], [20, 41, -38, -30, -17], [33, 41, -35, 49, -35]] Output:
[ "[-19, -39, -202125, 2009, -1421, -17, -435, 9, -697, 81213825]" ]
task852-df852e2f1a4d4a1a9b7585cda70402d1
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[35, 48, -5], [-6, 13], [-26, 41], [36, -25, -8, -49, -1], [45, -4], [12, -10, 47, -3], [-10, 26, -48, -15, 32], [-26, -41, -1], [-5, -44], [10, 40], [-7, 26, 45]] Output:
[ "[-175, 13, 41, -1225, 45, -141, -15, 41, -5, 0, -315]" ]
task852-708bab5a73404b4b9cb3c0e726d7321b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-11, 50, -41, -2, 9], [-11, -38], [-8, 33, -40], [9, -11, 27, 35], [-30, -29], [18, -39, 26, 40, -46], [-3, 28, -2, 11], [46, 36, 19, 46], [-46, -46, 30, -3], [24, 10, 38, 38], [25, -29, -17], [5, -38], [-34, 39, 27, 26], [-39, -31], [11, 25, 27, -35, 24]] Output:
[ "[4059, -11, 33, -93555, -29, -39, -33, 19, -3, 0, 12325, 5, 1053, 1209, -259875]" ]
task852-8fd69c0c0eb94b7ab7c8c016aaef620a
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-18, 23], [12, 15], [-19, -29], [-42, 43, -35, -15, 25], [44, -31, 27], [-29, -9, 17, 15], [9, 6, 32, -32], [26, -38, 44], [38, -1, -15, -37], [26, -44, -25, -8], [34, -38, 41, 20, -15], [21, -44], [7, -45, 6, -28, -3]] Output:
[ "[23, 15, 551, 564375, -837, 66555, 9, 0, -555, -25, -615, 21, 945]" ]
task852-f0e3d0e2f793466c8ff5d202d8c4f0ef
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-27, -6, -46, 31], [-27, 43, -12, 21], [-8, -23, -45, 31, 29], [8, -44, -46], [-2, 10, 25, 18], [30, 6, -2], [-25, -2, 35]] Output:
[ "[-837, -24381, 930465, 0, 25, 0, -875]" ]
task852-3a158ae00afa426aa88b481814ec0e0b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[45, -44], [-29, -13, -40, 9], [-15, -4], [-40, 4, -28, 3, -4], [4, -15, -43, 11], [-24, 45, 42], [36, 32, -23, -49], [-33, -3, 9, 46]] Output:
[ "[45, 3393, -15, 3, 7095, 45, 1127, 891]" ]
task852-33b31c28ae2f48eb9ce4ae16861a2abe
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-31, 25, -41], [13, 37, 35], [50, 32, 1, 31]] Output:
[ "[31775, 16835, 31]" ]
task852-a1ce40c6fd184c33b7ae33f201749883
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[2, 32, 0], [21, 38, 17, 22], [-16, 24], [-8, -48, 22], [-50, -5, 1, 32, 6], [-27, -39, -7], [39, 46, -28, 9], [-49, -39, 45, 26, 33], [25, -44, -9], [-30, 13, -30, 18, -5]] Output:
[ "[0, 357, 0, 0, -5, -7371, 351, 2837835, -225, -65]" ]
task852-763c1c8ba11f45d7a767b3cfa85e5720
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[45, 28, 38], [-45, 23, -46, -5], [-40, -28, -1, -31, 10], [-12, 27, -26, 7], [45, -13], [13, -3, 20, -44, -38], [26, 43, -9, 46], [-17, 2], [-22, 48, -20, -13, -6], [12, -41], [38, 6, -14, 18, 14]] Output:
[ "[45, 5175, 31, 189, -585, -39, -387, -17, -13, -41, 0]" ]
task852-2b03f94092f3418dbd653a23184ec697
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-13, -22, 48], [28, -34, -27, -22], [48, -19, -43, -31, -46], [-47, 14, 13], [-36, 30, 16, -44, 16], [-11, 48, -4, 41, -16], [9, 32, 48, 33], [3, -31, -31], [-33, -16, -22], [-5, -30], [27, 29, 48, 0], [16, 15, 25, -21], [18, 35, -29]] Output:
[ "[-13, -27, -25327, -611, 0, -451, 297, 2883, -33, -5, 783, -7875, -1015]" ]
task852-34731ddc58f545ad88e135405c5c2a4e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[47, 16, 13], [13, 31, -23, -6, 16], [42, -12], [-50, -10, -27, 27], [-2, -39, -25, 11], [47, -1, -1], [-41, 15], [0, -15, -39, -38, 15], [25, 11, 13, 0], [-13, 29, -27, 45, -26], [-18, -7, -32, -29], [-7, 18, 50, 19, 6], [-15, -14], [50, -47, 32, 12]] Output:
[ "[611, -9269, 0, -729, 10725, 47, -615, 8775, 3575, 458055, 203, -133, -15, -47]" ]
task852-2d84ed644ecb4308802f08e32893dfb0
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[38, 50, 1, 1, 21], [-19, 39, -4, -41, 27], [-23, 45, 39, -31, 29], [15, -6, 48, -7], [1, -23], [-35, 14, -49, -21], [20, -18, 33, 7, 35], [25, -38], [11, -29, -27], [-35, 30]] Output:
[ "[21, 820287, 36288135, -105, -23, -36015, 8085, 25, 8613, -35]" ]
task852-92dc5abb27b64a5796a925822141003e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-48, -39, 5], [5, -10, -14, -38, -50], [-1, 7, 30], [-38, -16, -15, -30], [-37, -25, 44, -31], [-2, -48, -48, -20], [-30, 11], [-16, -44, 39]] Output:
[ "[-195, 5, -7, -15, -28675, 0, 11, 39]" ]
task852-2d31c13fb1d14e989871b985fd673d43
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-6, -31, -17, -6], [34, -4], [12, 23], [-35, 43, 48, 18, -47], [26, -2, -39], [-42, -27, 42, 38, -12], [49, -48, 13, -31]] Output:
[ "[527, 0, 23, 70735, -39, -27, -19747]" ]
task852-16577a93186f4e43bc77c68db296cd25
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[20, -29], [-17, 6, -29, 10], [-28, 11, 11, -28], [-43, 39, 39, -7, 50]] Output:
[ "[-29, 493, 121, 457821]" ]
task852-0515556fd1a841dfa5921cac2d3a3fae
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[38, -31, 24], [-24, 37, -5, -41], [44, 3, -35, -22], [47, 6, -32, 9], [-41, 39, -2, 23], [45, -7, 7, 26], [49, -8, -12, -46, -13], [4, -21, -1], [-2, 1, -37, -3, 49]] Output:
[ "[-31, 7585, -105, 423, -36777, -2205, -637, 21, 5439]" ]
task852-2aecdacac11b4affaed7a92cdee2acb3
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[21, -37], [0, 14, -20, 3], [-45, 12, -24, -18, -2], [-43, -13]] Output:
[ "[-777, 3, -45, 559]" ]
task852-2f5bd2b1bb79474c9b8551c5dec8a77e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-11, 31, -39, 44, 35], [13, -36, 34, -38, 36], [-8, -15, 33, 11], [-8, -26, 33, 5, 50], [-18, -46]] Output:
[ "[465465, 13, -5445, 165, 0]" ]
task852-fa801e5ae85d4b54ab250eb53ee71155
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-1, -16], [-28, -1, -15, -35, 17], [21, 5, 17, 37], [-36, -20], [-25, -20, -12], [-42, 7, 6], [-16, -50], [-9, 13, 36, -7], [-42, -1, -23, 37], [-18, -43, 29, 23, 39], [18, 0, -43], [-5, -29, 25, 22], [3, 30, -9, -1, -45], [37, -4], [-23, -19, 35, 22, -6]] Output:
[ "[-1, -8925, 66045, 0, -25, 7, 0, 819, 851, -1118559, -43, 3625, -1215, 37, 15295]" ]
task852-22381e1e795f4375baafc1c061dc5656
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[4, 1, 15, -26], [-19, -18, -45], [-40, 28], [36, -22, -2, -15, 49], [-15, 24, -12], [-16, 21, 20, -36], [30, 17, -30, -38, 12], [19, 1, 3]] Output:
[ "[15, 855, 0, -735, -15, 21, 17, 57]" ]
task852-7ff9dfb6d3364cabaf9f91a0ff54c527
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[24, 20, -47, 31, 35], [-19, 26, -50], [-16, -42]] Output:
[ "[-50995, -19, 0]" ]
task852-cbcb290abd514dc9a9156664dbb71dfa
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-35, -7], [-43, -23, -49, 23], [31, -22, 24, -33, -10], [47, 50, 50, 0], [5, 6, 35, 21, -15], [-26, 4, 7, -46], [-7, 42], [2, 27, 33, 3, 23], [4, 21], [-7, 15, -32], [18, -9], [-19, 27, 45, 22, 26], [-2, -19, -13], [-13, -50, 7, 37, -13], [-13, 15, -27, 0, 11]] Output:
[ "[245, -1114603, -1023, 47, -55125, 7, -7, 61479, 21, -105, -9, -23085, 247, 43771, 57915]" ]
task852-063604df48c7469cb4e34131c20baa2e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-28, 43, -10], [16, -11, -44, 23], [-23, 26], [-44, -42, -38, 4]] Output:
[ "[43, -253, -23, 0]" ]
task852-1df1cea20d8b4be8b7d9e86f43d68d88
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[17, -5, 1, -50], [-36, 5, 49, -28], [22, -45, 29, 23], [-11, 27, -25], [39, 34, 5, -32, -32], [-49, -1, 13], [-18, 6], [5, 11, -23, -20, -47]] Output:
[ "[-85, 245, -30015, 7425, 195, 637, 0, 59455]" ]
task852-6e872b876ba549f0ab16e2b276c3c20a
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[6, -1], [9, 45, 43, 13], [1, -45]] Output:
[ "[-1, 226395, -45]" ]
task852-9b9e781b939a4361ae2f8af2baac7718
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[1, 24, -18, -38], [0, 46], [-48, 7, 49, 39, -19], [-25, -28]] Output:
[ "[1, 0, -254163, -25]" ]
task852-721679cf38d34e69a401f776d40fac00
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[38, 6, -15, -10, 43], [36, -37], [12, 41], [-12, -42], [4, 3, 37, 13], [-6, 42], [-22, 10, 9, 34]] Output:
[ "[-645, -37, 41, 0, 1443, 0, 9]" ]
task852-7fa56f129a99415dacd65a3f9ea02526
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[21, -34, -49, -41], [-9, 34, 3], [1, -34, 25, -7, -12], [4, 31], [18, 35, 21, 20, -45], [-22, 28, 36, -34, 12], [44, 27, -6, -43, 15], [-1, 35, 50, 44, 47], [27, -19, -20, 31, -5], [1, 4], [4, 48, 32, 5, -23], [-1, 48, -39, 23, -29], [50, -43, -24]] Output:
[ "[42189, -27, -175, 31, -33075, 0, -17415, -1645, 79515, 1, -115, -26013, -43]" ]
task852-a4a0d94976d5489fa6570cdad65a434b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-3, 50, -10], [-31, -17], [24, 43, 1, 20], [-16, 26, 44, -43], [-8, -39, 30, 32], [17, 15, 25, -43, -42], [-26, -41, 2, -22, 18], [-3, -9, 46, -24], [-45, -39, -10, -5]] Output:
[ "[-3, 527, 43, -43, -39, -274125, -41, 27, -8775]" ]
task852-79927ebef07f46d6944451d1b7488b7f
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-30, -17, -38, 38], [-22, 36, 21, 47, 9], [-15, -43], [19, -46], [46, -42, -45], [33, -26], [-12, -3], [24, 23], [40, -17, -42]] Output:
[ "[-17, 8883, 645, 19, -45, 33, -3, 23, -17]" ]
task852-6e864e4b3ce34b9da5dbe7f10831e0d7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[41, 40, -12, -16], [35, 12], [19, -45, 47, -37], [42, 41, -12, -19], [11, -22, 20], [-12, 14, -26, -26], [-43, 19, 12], [0, 17, 19, 45, 32], [39, 44, 38, -14], [-47, 3, -46, -37], [-27, -7, 46, -44], [-40, -36, 38, 19]] Output:
[ "[41, 35, 1486845, -779, 11, 0, -817, 14535, 39, 5217, 189, 19]" ]
task852-429d01aac20d404f8100f4a3cdfe8dac
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-29, 42], [40, 20, -38], [2, -14], [16, 17, -40, -29], [20, 44, 47], [-46, 34, 45, -16]] Output:
[ "[-29, 0, 0, -493, 47, 45]" ]
task852-f66ebe90d9f146318bb68eaa1e0b8f86
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[28, 49, 36], [-18, 48, 49, 8], [-17, -38, 45, 12], [-20, 42]] Output:
[ "[49, 49, -765, 0]" ]
task852-0c2f8adeab394e1bbad92607c49f615d
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[29, -37, -12, -15, -11], [6, 7, -18], [-18, 36, 12]] Output:
[ "[-177045, 7, 0]" ]
task852-e0ea7d9a3d324d14bcc614dc5f3796fa
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-27, 8], [31, 50, -15, 44], [-3, 35], [24, -42], [5, -39], [37, 29, -10, 12], [14, -17, 36], [-47, 23, -13, -18], [-40, 10, 26, -3], [-23, -22]] Output:
[ "[-27, -465, -105, 0, -195, 1073, -17, 14053, -3, -23]" ]
task852-88477a270bad414283c0c01f9646b5e2