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: [[31, -18, -33, -41], [-36, 37, -11], [21, -8, -26], [40, -25, 48], [-15, -23], [18, 6], [-2, -21], [-29, 7]] Output:
[ "[41943, -407, 21, -25, 345, 0, -21, -203]" ]
task852-9c7098dfea8f4e049671d2187fafdfd1
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: [[49, 36, 12, -29, -24], [44, 6], [16, -38], [45, 22, -35], [13, -26], [-15, 33, 42]] Output:
[ "[-1421, 0, 0, -1575, 13, -495]" ]
task852-d6baf0c39a89406db21eea4994aaeece
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, 18], [45, 21, -7, -39, -19], [-5, 31, -19, 36], [28, 43, -18, 7, 48], [-50, -44, 15, -15], [25, 17, 50, -42], [43, -5, 43, -2], [33, -34, 49, -7, -48], [-1, 7], [20, -38, 10]] Output:
[ "[27, -4901715, 2945, 301, -225, 425, -9245, -11319, -7, 0]" ]
task852-43d9b001f6174635be9568af5d375c64
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, 19, -40, 7, 14], [20, -17, 48], [43, -37, 46, 8], [-46, -50, 2, 32], [-8, -30, 23, 32, -19], [28, -45, 15, -12, 11], [42, 15, -18, -49], [15, -8, -44], [-11, -5, -1, -46], [-22, 49], [-22, -39, 31, 8, 39], [14, 47, 43, -32], [42, 7, -30, -40], [0, -26]] Output:
[ "[399, -17, -1591, 0, -437, -7425, -735, 15, -55, 49, -47151, 2021, 7, 0]" ]
task852-2c81167e540c4f3bbf85daa52006a3d0
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, 17, 48, -1], [45, -17, 44, -43], [-42, 6, -13, -50, -43], [-9, 11, -16, -24], [25, 19], [-43, -31], [-36, 19, 8, 34, 10], [-27, -20, 34, 2, -14], [40, 34, -33, -11], [23, 14, -23], [-1, 34, -32]] Output:
[ "[323, 32895, 559, -99, 475, 1333, 19, -27, 363, -529, -1]" ]
task852-9a64b1abd8b44c989fbfa0ded79eef9a
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, -22], [46, 50, 49], [-25, -23, -50], [15, -21, 9, 10, 30], [-20, -6, 27], [-37, 43, -27], [33, -27, 6], [17, -26, -31, 34, 5], [24, -45, 43, -33, 6], [-13, -31], [-47, 9, -14, -32], [49, 4, 10, 33]] Output:
[ "[11, 49, 575, -2835, 27, 42957, -891, -2635, 63855, 403, -423, 1617]" ]
task852-9c479f071aff41dca7540a199da0a912
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, 15], [40, -20], [-18, 26], [49, -49, -12], [-18, -4], [2, 6, 7], [-27, -36, 44, 21, -27], [43, 21, 21, 9]] Output:
[ "[105, 0, 0, -2401, 0, 7, 15309, 170667]" ]
task852-f6b0d47f042a442ba45f3e614e6ecd14
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, 25], [-25, 23, 5, -24], [-27, -7, 21, 1], [31, -37, 8]] Output:
[ "[925, -2875, 3969, -1147]" ]
task852-be6003feed3a4276ac67689a5c57ba29
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, 39, -41, -4], [28, -16], [-26, 13], [-19, -13, 5], [23, 26, -35, 18, -11]] Output:
[ "[-1599, 0, 13, 1235, 8855]" ]
task852-420ad823ae834dc492e8722abe77067f
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, -5, 32, 0], [10, 39], [37, 34, 28, -49, -17], [-39, -6], [47, -50, -1, -49, 15], [-46, -5, -5], [-42, 1], [25, 39, 5, -41, 50], [20, -46, 12, -39], [-2, 42, -27]] Output:
[ "[-5, 39, 30821, -39, 34545, 25, 1, -199875, -39, -27]" ]
task852-2c30807f073842d5a0e8b17b33c20e47
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, 35, -9, -32], [-39, 45, 36, -46, -21], [47, 33, 28], [-39, 30, 29, -24], [-30, -49, -7], [1, 13], [19, -8, 3], [13, 3, -9, 21, 27], [46, -17], [-46, 3, -3, -21], [20, -3, -4], [-32, 35, 43, -12, -8], [11, -15, -1, 19], [1, -40, 35]] Output:
[ "[4725, 36855, 1551, -1131, 343, 13, 57, -199017, -17, 189, -3, 1505, 3135, 35]" ]
task852-04cb82c2eecd419e82284c35e1408696
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, -15], [-35, 43, -15, -15], [49, 50, 1, 31, -12], [8, 21], [28, -7, 40, -35, 27], [-12, -12, 3, -14, 14], [-22, -25], [11, 18], [-9, -5], [-4, 10, 17, -11], [45, 43, -35], [-9, 1, -26, -36], [-28, 23, -49, 45, -5], [-43, 32, 37], [-15, 30, 21, -42, -45]] Output:
[ "[-15, -338625, 1519, 21, 6615, 3, -25, 11, 45, -187, -67725, -9, 253575, -1591, 14175]" ]
task852-8cd4d5101732484dad9aa8ae16a24380
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, -39, 10, 25, 24], [35, -33, 8, -3, -21], [-48, 6, -4, -15, 6], [43, 13], [27, 18, 28], [-50, -30, -5, -32], [39, -2, -44], [25, 28, -3, -5, -37], [-31, 1, 3, -34, 20], [-46, -8, -42], [39, 35, 20, 6], [31, -4, -11, 48], [24, -26, 31, 8]] Output:
[ "[-36075, -72765, -15, 559, 27, -5, 39, -13875, -93, 0, 1365, -341, 31]" ]
task852-2afeb49b742640f9a7c52935936af212
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, 23, -17, -26], [-35, -49, -24, 37], [-33, -35, 9, -14], [-6, 38, 46, 31, -27], [-28, 42, 21, -8, 25], [13, -24, -35, 5], [-16, 16, -8, 27], [19, 16, -20], [12, -14, -16, -24, 3], [25, -14, -27]] Output:
[ "[-391, 63455, 10395, -837, 525, -2275, 27, 19, 3, -675]" ]
task852-f325222c74124b578f1ce78247dc5f50
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, 13], [17, -28], [26, -14, 49, -48], [-44, -7, 16], [-19, 26, 29, -41, 1], [-9, 23]] Output:
[ "[13, 17, 49, -7, 22591, -207]" ]
task852-603c954a564543dfa4f4dba82a928013
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: [[12, 23], [41, 9, 47, 9, -36], [1, -37], [-42, -7, 3, 42, -23]] Output:
[ "[23, 156087, -37, 483]" ]
task852-711d6c1ecc8e41ddaf09abd3f8498535
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: [[44, 18], [23, -26], [12, -29, 27, 6, -9], [-9, -35, -11, -36, -5], [13, 38], [24, -4, 19], [-38, 50, 19], [-9, 34]] Output:
[ "[0, 23, 7047, 17325, 13, 19, 19, -9]" ]
task852-d9b37a3752004075b003cc86db7b6971
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: [[23, 28, 13, 32], [21, -40, -23], [5, 27], [-2, 44], [34, 40, 21, 44, -5], [-1, -1, 34], [0, 37, 13, 35, -50], [44, 46, -26], [-27, -17, 49, 47], [38, -1, -50, -2, 6], [0, -3, 15, 6], [36, -37, 46, -6], [-11, -2, 11]] Output:
[ "[299, -483, 135, 0, -105, 1, 16835, 0, 1057077, -1, -45, -37, -121]" ]
task852-20cbe24bd3724d55851891a936aaa5f8
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, -43, -15, 7, 37], [17, 6, 49, -12], [-13, -34], [-30, 50, -41, 17], [31, -46], [-36, -8, -4, 30, 27], [24, 25, 19]] Output:
[ "[167055, 833, -13, -697, 31, 27, 475]" ]
task852-858cbe5833fc47c6a85093d19fb293c1
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: [[8, 14, 12, -6], [6, -46, 35, -49], [36, 36, -40], [47, 10, 9, -39], [39, -6, -24, 49], [-37, -25], [-2, -46, 34]] Output:
[ "[0, -1715, 0, -16497, 1911, 925, 0]" ]
task852-989d80eff81b4d2ba96a15e21d48767c
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, 6, 46, 3], [-15, -37], [37, -16, 13, 2]] Output:
[ "[141, 555, 481]" ]
task852-3cc95ae815bf4ee6b809bffb0f0de3c4
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, 7, 15], [-11, 29, 43, 16], [-4, 32, -39, 8, -20], [-20, 17, -10, -20], [-19, 1, 2, 24]] Output:
[ "[735, -13717, -39, 17, -19]" ]
task852-c3022f335a4a443e9595e3f9d2f40b3c
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, -23, -49, -8, -23], [-22, -23, 9], [36, 26, 19, 38], [-2, -11, -15], [2, -24, 23, -25, 46], [-14, -31, -17, -26, -43], [1, -34, 11, 8], [13, 17], [22, -10, 40], [1, 17, 35, -5], [-39, -32, 13, 14], [12, -17, -25], [3, 45, -9, 17]] Output:
[ "[-181447, -207, 19, 165, -575, -22661, 11, 221, 0, -2975, -507, 425, -20655]" ]
task852-9edcdfd9648b4358ad6f886d0fe539a2
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, 27, 25, 38, 5], [42, 12, 2], [-20, -38, -19, 29, 11], [24, -18], [-39, 22, 45, -34, -27], [-41, 38, 40, -23, -43], [-1, -48, 3], [-31, -32], [-7, -31, 1, 30, -41], [-36, -29, 45, -9, 1], [-28, 38, 43, -23, 9]] Output:
[ "[-64125, 0, -6061, 0, 47385, -40549, -3, -31, -8897, 11745, -8901]" ]
task852-dd83d06669774e12ab53f8dc9e26d8a8
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, -19], [-8, 20], [-14, 46, -29, 23, -10], [-28, -26, 1], [-34, -5, -42, 9], [50, 40, -6, -29], [23, 41, 34, 21], [-25, -21, -4, -8]] Output:
[ "[-19, 0, -667, 1, -45, -29, 19803, 525]" ]
task852-80f4db8608a649a59c882dc062c2a936
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, -24, -42, -6], [-14, 21, -17, -22, 29], [8, 32, -21, 32, 9], [-25, -46, 1, -9, 3], [8, -9, -9], [-26, 47, -17, 11, -50], [-2, 1, 14, -10, -31]] Output:
[ "[-13, -10353, -189, 675, 81, -8789, -31]" ]
task852-a3db5047bb364c199d327151d6909fdd
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, 19, -43, 10], [10, 28], [28, -11, -6], [-39, -14, 0, -50], [-41, 50], [39, -41, -41, 20, -13], [40, 48, -49, -50], [24, -34, 0, 2], [-33, 45, -45, -5], [-23, 8, 11, 41, -10], [-34, 5, -48, 9], [39, -8, 31]] Output:
[ "[10621, 0, -11, -39, -41, -852267, -49, 0, -334125, -10373, 45, 1209]" ]
task852-634ccf2ff0814cf0896ad98881c5a740
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, -4, 18], [40, 17], [47, -10, 1, -39], [24, 3]] Output:
[ "[0, 17, -1833, 3]" ]
task852-9814a1084b39439d8d0363ecbdf64102
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, -34, -35], [-30, 32, 45, 46], [-2, 47, 5, -39], [-1, -40, 17, 44, -26]] Output:
[ "[-35, 45, -9165, -17]" ]
task852-9ff792ae838646ffa78874334b3a2354
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, -45], [-29, -7, 28, -35], [-2, 3, 23, -3, -28], [41, 18, -36, -22], [-1, -45], [17, -38, -44, 49, -3], [-26, -33, 42, -10, -1], [-13, -21, 11, 11], [26, -10, 33], [9, 50, -36, -2], [-40, 48], [39, -23, -31]] Output:
[ "[-45, -7105, -207, 41, 45, -2499, 33, 33033, 33, 9, 0, 27807]" ]
task852-c935f2e529654f5994a4d8623111cbd3
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], [16, 37], [43, -32, -3, 42], [34, 33, 19], [-23, 49, 41, 40, -11], [-20, 46, -21], [46, 9, 4, -46, 42], [-42, -20], [16, -21, 39, -40, -40]] Output:
[ "[41, 37, -129, 627, 508277, -21, 9, 0, -819]" ]
task852-f12f703d491d4874bcd0a9d4d94eba00
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, 40, -45, 25], [38, 22, 18, 28], [-12, -48], [-16, -41, 8, -28], [-49, -7, 5], [-16, 26, -10, -12, -20], [13, 5], [29, 8, 39, -2], [-1, -10, 34, -29, -46], [-40, -9, -50, 40]] Output:
[ "[34875, 0, 0, -41, 1715, 0, 65, 1131, 29, -9]" ]
task852-009dab300fd7440b965513f76e2cca50
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, 14, 43, -24], [27, -23, 7, 19], [-43, -23], [-22, -14, -21, -24, 7]] Output:
[ "[645, -82593, 989, -147]" ]
task852-aebd1f1c3b304ddea0146d1b90bb5c6f
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, 13, 39], [45, -46, -37, -8, 47], [-10, -6]] Output:
[ "[-9633, -78255, 0]" ]
task852-17dbe2b635a24898ae332aa446371922
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, -38], [-45, -24, -46, -20], [45, 48], [33, 50, 24, 41], [-49, -15, -12], [11, -9, -32, -46], [45, 29, -13, 50, 45], [-26, 5, 39, 37], [16, -35, -45, 14]] Output:
[ "[9, -45, 45, 1353, 735, -99, -763425, 7215, 1575]" ]
task852-071c783bfb5c46fc8cca7e40d94d29e6
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: [[0, 39, -37, 43], [18, -28, 36], [49, -50, -6], [-42, -10, 20, 10], [13, -42]] Output:
[ "[-62049, 0, 49, 0, 13]" ]
task852-60b522a3c08f41dd996d7c8c8fe7d96e
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, 25, -21, 31, 50], [-11, 8, -22, 6, -44], [-34, -50, -41, -3], [-25, -12], [6, 50, -38, 26, -14]] Output:
[ "[-16275, -11, 123, -25, 0]" ]
task852-7edfe5336284482ebbf381de5f78d5ae
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, 33, -50], [15, -18, -12], [9, 41, 36, -11, 1], [-11, -41, 8]] Output:
[ "[-99, 15, -4059, 451]" ]
task852-96369bdfa330411c92a98c14d49285e4
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: [[-23, -36, -18, -35, 38], [30, -35, 28, -19, 26], [38, 14], [37, -14, 28], [-35, 26, -17, -39, 13], [48, 28], [-4, -44, 15, 25], [-41, 38, -45, 27], [-47, -18]] Output:
[ "[805, 665, 0, 37, -301665, 0, 375, 49815, -47]" ]
task852-abac8d23a5844c6c98dc3e75227f60ef
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, -43], [31, -28], [38, 1, 31], [28, 17], [14, 43, 4], [-26, -26, 9], [-12, 4, -44, 23, 48], [46, -1, -28], [-13, -35, 2, -6], [-1, -41, -16, 18, -15], [47, -40, 26, 34, -20], [33, 45, -47], [46, 33, -47]] Output:
[ "[-43, 31, 31, 17, 43, 9, 23, -1, 455, -615, 47, -69795, -1551]" ]
task852-62371f5a5e1c4fba94b6384b5f41798b
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, -18, 0, -14, -37], [-48, 34], [-42, 4, -43, -29, -35], [-3, 18, 38, 8, 34], [2, 26, 27]] Output:
[ "[-37, 0, -43645, -3, 27]" ]
task852-831e1f837abc4c199f89b9aebe3c2f71
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], [12, 13, 9, 47], [19, 40, 9, 23], [30, -25], [-20, -6], [-13, 39, -49], [3, 42, -19], [-36, 37, -6, 42, -44], [38, 8, -34, 17], [-24, -31], [-42, 43], [-38, 14, 44, 49], [25, -2, -20, 47], [4, 31, 38], [2, 21]] Output:
[ "[-45, 5499, 3933, -25, 0, 24843, -57, 37, 17, -31, 43, 49, 1175, 31, 21]" ]
task852-42d6611e67244f958ea625174dadc5d9
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: [[26, -12, 39, -28, 38], [15, -39, 11, -10], [-48, -47, 7, -50], [0, -46, 26], [-8, 35, -11, 34], [21, 14, -47]] Output:
[ "[39, -6435, -329, 0, -385, -987]" ]
task852-24aa2f77fca44c6fa2d739b867b16933
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, 23, 44], [36, 14, 25, 34, -11], [-39, -40, 39], [6, -21, 37], [-4, -29], [28, 14], [-40, -43], [-15, -13, -17, -49, -26], [-3, 50]] Output:
[ "[23, -275, -1521, -777, -29, 0, -43, 162435, -3]" ]
task852-21072f21eb9d49f9ae5765bbdac6387e
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, -34, -28], [37, -42, 27, 40, -13], [10, -15, -49, 29], [15, -27], [-50, -35, 20, -13, -30], [23, 18, 6, 49], [-48, 13, 39, -7, 21], [-1, 3, 39, -38, -26]] Output:
[ "[19, -12987, 21315, -405, 455, 1127, -74529, -117]" ]
task852-180bf7402088464ca010d72383b72cb1
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, -24, -1, -43], [22, 24, 4, -8, 12], [-14, -6, -4, 45, 20]] Output:
[ "[43, 0, 45]" ]
task852-01e62ea461544c4787c0fd350c5f6f6d
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, 1, 35, -2], [30, -35, 4, -32, -18], [43, -34, -23, -21], [4, 39, -23]] Output:
[ "[35, -35, 20769, -897]" ]
task852-91c14046d252420c800c6aa3c75da2d2
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, 2, 42, 47, -4], [-15, -35, -29, 33], [-1, 40, 14, -27], [-19, -27, -49, 45, 41], [39, -17, -47, 31], [-33, -12, -19]] Output:
[ "[-47, -502425, 27, -46377765, 965991, 627]" ]
task852-26551af31f594ba9bf12c123233b1823
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: [[36, -17, -3, -6], [-41, -12, -17, -12, 35], [32, 26], [41, -44], [-34, -28, 30, 36], [-45, 0], [11, 27, -33], [-16, 5, -35], [-37, -9, -19, 15, -45], [10, 27, -33], [-19, 22, 41], [-22, 49, 12, 38, -28], [1, -12, 12], [-43, 12], [-21, -22]] Output:
[ "[51, 24395, 0, 41, 0, -45, -9801, -175, 4270725, -891, -779, 49, 1, -43, -21]" ]
task852-a199d05718b44f28bd392110eb639af6
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: [[26, 0, -5], [-43, -42, -7, 6], [-4, -48, -21, 3], [-11, 47], [29, -2], [-25, 27], [31, 38]] Output:
[ "[-5, 301, -63, -517, 29, -675, 31]" ]
task852-655f5d6beb264dfe94267c8934e96c0f
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, 44], [-18, 36], [27, 33, 50], [46, 49, -16, 16, 25], [36, 42, 15, 39], [18, 1], [-48, -1, 4]] Output:
[ "[0, 0, 891, 1225, 585, 1, -1]" ]
task852-c5dd3c69685b4a8fb7fbd48050d89562
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, -50, -10, -41], [-9, 41, -36, 39], [-12, -40, -10]] Output:
[ "[-205, -14391, 0]" ]
task852-9a7284af83c1476199633e8089c43cb4
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: [[39, 13, -33, -19], [17, -45, 24], [-1, -32, -48, 38], [-30, 32, 2, 16], [-2, 50, -46, 37, 2], [-48, -22, -18, -12], [24, 6, 20, -44], [1, -42, 20], [32, -16], [-22, 27, -2], [49, 48, -27, -50]] Output:
[ "[317889, -765, -1, 0, 37, 0, 0, 1, 0, 27, -1323]" ]
task852-f269a2b79a364bbe8af5f99c75a293d5
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, -48, -44, 16, 50], [29, 2, -27], [-22, -32], [46, 36], [-3, 10], [16, -22, -14, -40], [-41, 9, 25, 3], [5, -22], [-15, 47, -35, 17], [2, 43, -18, -33], [-33, -41, -29], [3, 28, -21, 44, -49], [45, 29, -33, 14, 4], [-14, 43]] Output:
[ "[-45, -783, 0, 0, -3, 0, -27675, 5, 419475, -1419, -39237, 3087, -43065, 43]" ]
task852-982695af81384d6da1d63ca79ec7d181
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, -35, -28, -17], [-31, -15, -17], [-50, -27, -45, 7, -12], [-5, -3, -39, -23, -37], [27, 4, 40, 47, -47], [-9, -24], [36, 36, 45, -31, -47], [-21, -37], [-36, -14, -47, 42, 15], [3, 24, 15], [-21, 9]] Output:
[ "[595, -7905, 8505, -497835, -59643, -9, 65565, 777, -705, 45, -189]" ]
task852-a8f26d1ba1fb4bc9afdb06c87d77124c
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, -44], [13, 5, 34], [29, 7, -47], [-38, 6, 8, -39, 0]] Output:
[ "[-13, 65, -9541, -39]" ]
task852-6ffff7ed4a4e4e899a33665653e1c680
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: [[-26, -45, 24, -11, 42], [20, 48, 23, -46, 35], [39, 36, 49, -41], [36, 9, -34], [-47, 16], [40, -41, 25], [-14, -39, -2, -6, 30], [16, 7], [-23, 30, -41, -36], [-43, 30, -44, 39, 25], [23, 10, -10], [-28, -32, -26]] Output:
[ "[495, 805, -78351, 9, -47, -1025, -39, 7, 943, -41925, 23, 0]" ]
task852-4cdd093b650643c394421f1c432bc6ac
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, -49, -24, -11], [-46, 41, -50, -7], [-31, -4, 8], [-24, -32, -7, -24], [-23, 44, 0, 1], [-10, 13, -19, -25, 30]] Output:
[ "[-23177, -287, -31, -7, -23, 6175]" ]
task852-f51ed36f718d4614b91d3f6d1e950391
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, -43, -22, -34], [41, 5, -37, -17], [-6, -41], [5, -16, -49, 15], [-9, 7, -20, 12], [19, -22, 41, 40, -26], [9, 0], [47, -49], [21, -41, -49], [22, -48, 50], [6, -34, 47, -9], [-13, 19, 5, -13], [-13, -15, 8, -48, -10]] Output:
[ "[-1247, 128945, -41, -3675, -63, 779, 9, -2303, 42189, 0, -423, 16055, 195]" ]
task852-0528d880aeb94a53b0f02616bc61322f
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: [[-44, -30, -20], [-13, 17], [-27, -48, 49, -20, 2], [-23, -19, -12, -42], [-36, -9, 29, -4], [0, -19], [4, 39, -4, 50, -40], [-48, 20, -16, 5, -11], [-45, 7, 7, -18, -40], [-20, -31, 46, 50], [-50, 28, -50], [16, 25, 7, 2, -14], [-35, -42, -33, -10, -50], [34, 32, -42, 34]] Output:
[ "[0, -221, -1323, 437, -261, -19, 39, -55, -2205, -31, 0, 175, 1155, 0]" ]
task852-410171a7eef049fcb0376bcec754ee75
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, 17, 12, -8], [-45, 0, 10, 4, 22], [33, -45], [19, -47, -16, 20], [15, -16], [44, 1], [-29, 35, -30, -19, 3], [4, -38], [47, 4, 26]] Output:
[ "[595, -45, -1485, -893, 15, 1, 57855, 0, 47]" ]
task852-ec18c9620db94fd98697a4b51c39cb7a
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, -23, -50, -16, -32], [-50, -33, -39, 22, 8], [9, 17, 38, 13, 20], [-34, 33, -24, -14], [6, 17, 9, 7, -27], [-15, -25, -18, 36], [-18, -26, 7, -27, -24], [19, -44, -34], [-13, -23, 41, -15], [49, -40, -16, -42], [-21, -38, -34, 32]] Output:
[ "[23, 1287, 1989, 33, -28917, 375, -189, 19, -183885, 49, -21]" ]
task852-11d3be83434e4c31b10a8bc499dfbc62
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, -20, 13, 42, -5], [-25, 1, -15, -18], [-43, -48, 18, -43], [-18, 5]] Output:
[ "[-65, 375, 1849, 5]" ]
task852-cc0bdcb833374e7f80780c5f10a20f83
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: [[-12, 42, -9, -16, -42], [-37, 44, 45, 11, 16], [-35, 47], [-34, -7], [35, 3, 10, 39], [45, -41, 39, -8], [-1, -13, -4, -7], [-30, -39], [-23, -31, 17, 0, -26], [29, -15, 30], [-48, 12], [45, 47, -24, 40], [-44, 32, -29, 1], [28, -38, -23, 17]] Output:
[ "[-9, -18315, -1645, -7, 4095, -71955, -91, -39, 12121, -435, 0, 2115, -29, -391]" ]
task852-342b35f1bca84bd5bb3fd8f3416c2e41
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, 25, 45, -42], [20, -13, 5, -13], [-11, -9, -29, 38], [-14, 45], [-25, 1, -43], [27, -44, 35, 4], [43, 5, 38, -39, 15], [17, -26, 14, 23, 33], [-23, -47, 22, 17, -16], [46, -18], [-49, 44, 7, -32, 32]] Output:
[ "[1125, 845, -2871, 45, 1075, 945, -125775, 12903, 18377, 0, -343]" ]
task852-5be78cfeec9048c680fd084d0c3cd1f1
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, 47], [39, -36, 7, -32, 50], [27, 22, 1, 45], [15, 36], [-14, 25], [48, 49, -34], [-16, -26, -20, 44], [-25, 2], [39, 9, -47, 12, -45]] Output:
[ "[-1363, 273, 1215, 15, 25, 49, 0, -25, 742365]" ]
task852-0bd9baebbe254fd39fd314860e1ef2df
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, -2, 16, 38], [0, -14], [16, 29, 7, -34, 33], [-9, 47, -27, 49], [-18, -40, 16, -23, 43]] Output:
[ "[0, 0, 6699, 559629, -989]" ]
task852-31100df6801e4280b9b6fd2554313bc8
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, 50, 43, -33], [-32, -26, 50, -3], [22, 39], [-4, 24], [-44, -1, 3], [22, 10, -11, 8], [-26, -39], [-7, -47, 19, 34, -17], [7, -44]] Output:
[ "[26961, -3, 39, 0, -3, -11, -39, -106267, 7]" ]
task852-1c0a186b0324472b8d442f809e178b6c
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: [[23, -1], [32, 2, -48, 10, 2], [28, 17, -41], [-29, 49, -15], [44, 44, 28, 16], [16, -19, -38, 34, -1], [6, -5]] Output:
[ "[-23, 0, -697, 21315, 0, 19, -5]" ]
task852-39f35ef9026742a8aac7797b68064c9c
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, 40, -11, -44, -16], [-38, -5, -31, -47, 41], [23, 33, 41], [42, -10], [-17, -12, 13], [-17, 33, 19], [27, -39, 7, -21, -18], [0, 34, 38, 45], [-16, -23, 20], [-36, 25], [21, 19]] Output:
[ "[-363, -298685, 31119, 0, -221, -10659, 154791, 45, -23, 25, 399]" ]
task852-60978fe17b834a5a9c5190f3e687cbfe
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, -25, -47], [0, 10, 23, 7], [22, 39, -31, 45], [-50, 40], [36, -24], [-40, 9, 36, 2], [-40, -13, -46], [-22, -39, -26, -10], [14, -49, -50]] Output:
[ "[-38775, 161, -54405, 0, 0, 9, -13, -39, -49]" ]
task852-e7a2eff77be84f32b67d7482dfedc34d
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, -12, -49, -12], [22, -43, -22, 29, -46], [28, 0, 15], [-19, -30, -8, 37], [-28, 29, -5, 27], [-29, -50], [-18, -19, 27, 25], [-41, -38], [-3, 27, 13]] Output:
[ "[-637, -1247, 15, -703, -3915, -29, -12825, -41, -1053]" ]
task852-7c65bf492aa64a5182acfb3bd06deebe
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, 35, -26, 40], [13, 16, 34, -43], [25, -45, 10], [11, 27, -43], [40, -33, -45, -8], [0, -4, -3], [-10, -31], [-25, 34], [11, -12], [-31, -19, 31], [18, -20], [-24, 21], [-43, -49, 45], [-2, -25, 25, 6, -14], [4, 40, 49, -2]] Output:
[ "[-1085, -559, -1125, -12771, 1485, -3, -31, -25, 11, 18259, 0, 21, 94815, -625, 49]" ]
task852-1d01eaefc0314493a25c3c71f7224345
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, -23], [-28, -28, -41, 16], [27, -29, 6, 33, 44], [-12, -15, 8, 36], [40, -1], [-41, 0], [-7, -31], [-9, -27, -48, -41, -42], [-16, -8], [-42, 25, -22], [-2, 22], [-48, 29], [-5, 2, 29], [-9, -3, -22], [48, 45]] Output:
[ "[69, -41, -25839, -15, -1, -41, 217, -9963, 0, 25, 0, 29, -145, 27, 45]" ]
task852-a4503222ab9b439e8c3abcee3064e5e2
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, 37, -48, -33], [37, -7, -5, -24, -2], [-31, -48], [36, 7, 26, 14, -10], [-35, 29, 7], [14, -2], [-14, 19, -9, 22], [1, 47, 35]] Output:
[ "[-1221, 1295, -31, 7, -7105, 0, -171, 1645]" ]
task852-282e6be15fbb46d2a3067d5f761493e3
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, -36, -1, -50, -25], [-39, 2, -1], [-2, -26, -17, -26, 8], [31, -4, -21], [0, -38], [13, -11, 10, -43, -42], [-13, 11]] Output:
[ "[-375, 39, -17, -651, 0, 6149, -143]" ]
task852-e80ac1c2e2354cda973ff14b6fdeeb66
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, 37, -36], [47, 32, 4], [-19, -48, -29, -24], [-20, -43, 9], [34, -42, -14], [34, -22, 48], [-1, -8, 20], [-37, -18, 4, 24], [22, -9, -15, -27, -32], [-8, -8, -39, 3, 44]] Output:
[ "[37, 47, 551, -387, 0, 0, -1, -37, -3645, -117]" ]
task852-23aef549621b4f139dc141ec79586147
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: [[44, 18], [-34, -36, -45], [11, 34, -22], [-50, -29], [35, 10, -47, -8, 49], [36, 23, -2, 4], [16, -14], [39, -25, 44, 6, -41], [26, 4], [44, -9], [48, -38], [-30, -44, -24, -39, 26], [-5, 1, 49], [44, 11, -41, -14], [14, 39]] Output:
[ "[0, -45, 11, -29, -80605, 23, 0, 39975, 0, -9, 0, -39, -245, -451, 39]" ]
task852-6d1ffb4db1824a0c82480d8cfdc880a0
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, 8, -4, -3, 27], [-47, 7, 29], [-35, -35], [-5, -13, 40, -1, -50], [-32, 15, -37], [-37, 7, -50], [47, 31], [29, -32, 11, -29]] Output:
[ "[2835, -9541, 1225, -65, -555, -259, 1457, -9251]" ]
task852-f493ff9d6a7b4a699881bb139353d360
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, -49, 47, 2], [-14, 49, 16, -50], [24, 33]] Output:
[ "[-2303, 49, 33]" ]
task852-656ba6e68e764c30b4a32714cf7f238f
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, -50, 5, 21], [38, -8, 22, -9], [3, -25], [43, 50, 29, -28, 25], [-17, 12, -21, 31], [47, 4, 5, 18, 25], [42, -33, -45], [-16, -14, 49, 6], [22, 11, 17, 27], [-45, 28, 45, -22], [-25, 42, -27, 12], [-48, -49], [48, -8, 38], [4, -5], [7, 47]] Output:
[ "[105, -9, -75, 31175, 11067, 5875, 1485, 49, 5049, -2025, 675, -49, 0, -5, 329]" ]
task852-3c692e70b9d14ebd81fe992802e5ee4f
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, -28, -45, 33], [-45, 7, 31, -50, -24], [10, -1, -47, 15, 12], [-11, -3, -24, -24], [26, 13], [5, 11, 45, -22, -49], [-14, -9, 4], [4, 37, 11, 37, -49], [-20, -50, 49, -44], [-37, -50], [10, -19], [-18, 11, 26], [-19, -12, -16], [-2, 6, 36, 39, -44]] Output:
[ "[-19305, -9765, 705, 33, 13, -121275, -9, -737891, 49, -37, -19, 11, -19, 39]" ]
task852-01ffaa42079446498ebccc41d0fcb785
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: [[0, 38, -47, -16, -15], [-1, -45, 36, -47, -47], [-9, 17, -36, 35], [48, 28, -50], [-43, -49], [-3, -3, 24, -1, 18], [35, 37], [40, -29], [-17, 31, 47], [-5, 40], [-29, -8, 33], [-26, -16, -20, -39], [-25, -8, -10, 48, -6]] Output:
[ "[705, 99405, -5355, 0, 2107, -9, 1295, -29, -24769, -5, -957, -39, -25]" ]
task852-708d08d3875a4d9f948dcf2d7b49c6b2
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, -44, 34, -10], [-49, 20, -12, -3], [38, 33, 1, 42, -50], [-16, 17, -29], [10, 46, 45, 47, 30], [5, -29], [36, -31], [16, 44], [-20, -11, 42, -22]] Output:
[ "[-29, 147, 33, -493, 2115, -145, -31, 0, -11]" ]
task852-518787c48b444dd092023382a2e6c3b4
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, 46, 33, -45], [-42, 31, -31, -10, -47], [-11, -49, -12, -23, -39], [8, -20, 43], [-46, 30, -5, 7], [-21, -40, 31, 47, 21], [40, -36], [-40, -35]] Output:
[ "[-43065, 45167, 483483, 43, -35, -642537, 0, -35]" ]
task852-0b19aa52d04c448b8fd97fed16e3a7c8
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, -5, 11, -23], [44, -27, 40, -13], [-18, 26, 27], [-32, 3, 43, -6, 47], [-37, -32, 6, -10], [-44, -50, 8, 24, -37], [-14, -50], [26, -30, -30, -40, -11], [-18, -22, 29], [-45, -11, 27, 20], [-19, 28, 27, 24], [-3, -14, -25, 43, 21], [-12, 28, 12, 37], [-44, 24]] Output:
[ "[1265, 351, 27, 6063, -37, -37, 0, -11, 29, 13365, -513, 67725, 37, 0]" ]
task852-fb7efbd57e7d4d5b96ff0b652912c29e
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: [[-26, -8], [43, 24], [-39, 33, 27, -43], [49, -47, -40, 10, -9], [-21, -12]] Output:
[ "[0, 43, 1494207, 20727, -21]" ]
task852-378ee219ab9047099ab1bbbaa4e03e53
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, -25, -25], [42, 21, -30], [-4, 42, -50], [45, -24, 23, -49, -26], [-42, -22], [10, -43, -16, -33], [-13, 34, -3, 5, 34], [-25, -29], [27, -45, 3, 46], [-11, -45, 40, -31, -14], [47, -45, -46, -44]] Output:
[ "[625, 21, 0, -50715, 0, 1419, 195, 725, -3645, -15345, -2115]" ]
task852-5053aab1b4e24780903d8a92c412a28d
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, 7, 13, 3, -1], [19, 21], [42, -47, 15], [-37, 20], [15, 43, -29, -25, -9], [-15, -17, 31, -18], [46, -19, -16, -15], [27, 17], [38, -35, 26, -13, -32], [2, -27, 9], [36, 33, 43], [-18, -19, -12, -35], [-10, -1, 3, 41], [-41, 38, 11]] Output:
[ "[-3549, 399, -705, -37, -4208625, 7905, 285, 459, 455, -243, 1419, 665, -123, -451]" ]
task852-b93a50ce20394d4787aad037d45ec8df
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: [[0, 16, 48], [3, 49], [-24, 45, -34, 25, -11]] Output:
[ "[0, 147, -12375]" ]
task852-02987bfcba664edca64717ac67e330ba
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, 36, 1, 42], [3, 25], [-25, -26, 20, 15], [31, 8, -8], [36, -32, 49, 41, 25], [25, 38], [-25, 32, 0, 39], [-49, -15, -31, -29], [-10, 13, 50, -38, -34], [-21, -27, -6, 44], [21, 24], [14, -49], [-36, 3, -8], [23, -9, -31, -4]] Output:
[ "[1, 75, -375, 31, 50225, 25, -975, 660765, 13, 567, 21, -49, 3, 6417]" ]
task852-49b3b6761bc4466e99ca32f30f84a602
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, -16, 34], [28, 20, -32, 39], [-41, -46, -5], [11, -48, 33, 16], [-33, -30, -49, -21, 38], [-1, -10, 18, 42], [-24, -36], [37, 1, 35], [-2, 20], [34, 36, 50], [-10, -23, 41], [-26, 48, -12, -10], [-10, -45, -12, -23]] Output:
[ "[0, 39, 205, 363, -33957, -1, 0, 1295, 0, 0, -943, 0, 1035]" ]
task852-56d5949527d1462bbe28e7d0f177a402
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, -49, -26], [48, -48, 17, -21, 10], [30, 4, 2, -42, -32], [-43, 8], [19, -47], [38, 4, -41, 22, -35], [39, 40, 12, 31]] Output:
[ "[245, -357, 0, -43, -893, 1435, 1209]" ]
task852-5030366ea92b4d02921bd1919818585a
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, -13, 23], [-16, -6, 40], [24, -26, 9], [-7, -6, -6], [28, 46, -5, -47, 37], [3, 24, 18]] Output:
[ "[8671, 0, 9, -7, 8695, 3]" ]
task852-754e1ec3de2c45e4951dada5d50a9116
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, 18, 15, -45, -19], [47, 32, -6, 6, 14], [30, -32], [-19, 1], [-17, -37], [16, 14, 35], [-42, 16], [36, -38, 21, -34, -46], [6, -35, 4, -38], [24, -22, -28, 9], [-10, 8, -5]] Output:
[ "[12825, 47, 0, -19, 629, 35, 0, 21, -35, 9, -5]" ]
task852-c3ad0d8d313a49b483294f6fc97fd50d
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, 33, -13, 38, -26], [38, -50, -25, 28, 19], [38, 40, -25]] Output:
[ "[-5577, -475, -25]" ]
task852-2048f8e0b803479aaa63901f21dc05ab
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, -28, 47, -24, -1], [3, -12, 22, -27], [-10, -27, 30, -43], [28, -10], [-25, -38, 13, 18, -14], [31, 6, 18, 22, -33]] Output:
[ "[47, -81, 1161, 0, -325, -1023]" ]
task852-0ccf76308b134189b6530835768dd3cf
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, 19], [-37, 21, 39, 44, -45], [-26, -23, -36, 41], [-19, 3, 35, -47, 7]] Output:
[ "[19, 1363635, -943, 656355]" ]
task852-39b62847ab3944ca8393fb52784e7225
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, 10, -22], [-43, -36, -9], [-50, -43], [-10, 32, 15, 47], [-21, 47], [6, -43, -46], [36, 4, -32], [11, -13, -9], [49, -3], [34, 20], [-15, -19, 31, -43, -49], [45, 17], [16, -26, -40, 0], [-34, -43, 15, -50, 23], [26, -47, 10, 11]] Output:
[ "[0, 387, -43, 705, -987, -43, 0, 1287, -147, 0, 18615345, 765, 0, -14835, -517]" ]
task852-f25617435a034a88853f69cb6685b85f
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, 13, -17, -16, -15], [-1, 38, -14, 41], [8, -27], [1, 20, -41], [-17, -37, -44, -45], [31, 12], [27, 39, -3, -29], [-15, -23], [35, 6], [21, -41]] Output:
[ "[3315, -41, -27, -41, -28305, 31, 91611, 345, 35, -861]" ]
task852-b41f499f6bc0423597761f27d0124f97