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: [[-15, 45], [-4, -31, 23], [32, 47, -49, -26, -25], [18, -28, -7], [-50, 41, -32], [20, -46]] Output:
[ "[-675, -713, 57575, -7, 41, 0]" ]
task852-360bc3fb756242a891c98c66c32d753b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-25, 6, -34, -47], [3, -5], [12, -23], [15, -14, 26, -9, 45], [-28, -35, 8], [-7, 42, 20, -35], [32, -33], [-44, -20, 42, 28, 44], [20, -14, -11], [50, -18, -40, 9], [-43, 22], [-36, -37]] Output:
[ "[1175, -15, -23, -6075, -35, 245, -33, 0, -11, 9, -43, -37]" ]
task852-d6cfed6f5ae644459e95a788a7fd47d8
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, 33, -11], [-30, -16], [12, -22, 40], [-4, 10], [25, 36, 47, -15], [-8, 49, -36]] Output:
[ "[-363, 0, 0, 0, -17625, 49]" ]
task852-945a06d88cf1478486efe45345df315e
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, -44, -40], [-49, -29], [-47, -3, -3], [27, -32, 22, -21]] Output:
[ "[43, 1421, -423, -567]" ]
task852-dcdf5f3825d649ecb4bb71455af4da6b
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, 45], [8, 17, -22, 22], [31, -49, 5], [50, 37, 22, 6], [37, -35, 25, -10, 5], [-21, 24], [-43, -50, 44], [-44, 37, -25, -15, -14], [45, -49, 28], [-48, -12, 48, -20, -39], [26, -1, 24, 39], [22, -19, 44], [-41, 34, -9, 8]] Output:
[ "[-1935, 17, -7595, 37, -161875, -21, -43, 13875, -2205, -39, -39, -19, 369]" ]
task852-2bbef26cc72b47be95350a7bcb44405a
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, 47], [-14, -39, -9], [22, 18, -10], [-50, -38, 41, -7], [19, 28, 42, 11], [18, -6, 42], [-44, -29]] Output:
[ "[-705, 351, 0, -287, 209, 0, -29]" ]
task852-e330d0d5789440b786ce0f3bf51a7aae
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, 49, -3, -42], [5, -45, 3, 41, -22], [12, 41, -6], [25, -5, 14, -5, 42], [-18, 46, 19, 41, -34], [-6, -40], [35, 42, 9, -26, 21]] Output:
[ "[-1029, -27675, 41, 625, 779, 0, 6615]" ]
task852-3045e5f4da064f4c98795dece68db63a
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, 19, -49, -17], [-47, 22], [-14, -7, -4, -17, 1], [24, -7], [-46, 14], [-17, -16, 25, 1, 33], [14, 43, -3, -5, 48], [-47, -35, -8], [0, 48, 39, 39], [-44, -47, -20], [-11, 6]] Output:
[ "[-79135, -47, 119, -7, 0, -14025, 645, 1645, 1521, -47, -11]" ]
task852-63d1b63b0060449eb132841dba6b3d19
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, 12, 46], [23, -50, 46], [34, -44, 26], [-25, 14, -15, -41], [-36, -17, 38, -34, 40], [-12, 44, 49], [-25, 26, 9, -31, -4], [12, -23, -2, 28]] Output:
[ "[29, 23, 0, -15375, -17, 49, 6975, -23]" ]
task852-48dc73489e0a4130b1d9a55227b951fd
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[17, -47, -30, 29, 33], [29, -42], [-30, 16], [-43, 46, 3], [18, -48, 41], [-8, 15, -6, -10, 12], [49, -17, 38, 38], [26, -32, -43, -30, 13], [15, 21], [24, -34], [44, -10, -39]] Output:
[ "[-764643, 29, 0, -129, 41, 15, -833, -559, 315, 0, -39]" ]
task852-11f7aa6ef9c84fd3b59b2adb4f58a269
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, 11, 26, -26, 40], [15, -48, 40], [26, 41, 21, -45]] Output:
[ "[11, 15, -38745]" ]
task852-0b94d79c7a154bd8bd64182426146a3c
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, 30, 19, 13], [-32, 43, -24, 28, -32], [-2, -1], [-34, 45, 36], [22, 17, 37, -33, -50], [48, 2], [-40, 46, -18], [13, 8, 2], [-30, 42, 19, -14], [13, 47, 38, 6, 29], [7, 16], [-7, 32, -13, 36], [-44, -46, 36], [10, 36, 8]] Output:
[ "[247, 43, -1, 45, -20757, 0, 0, 13, 19, 17719, 7, 91, 0, 0]" ]
task852-cd287af77aa343708497691a149d8fea
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, 23, 11, -1], [47, -4, 14, -5, 50], [24, -43, -17, 32, -7], [16, 39], [-12, -22, 50, -35], [-26, -48, -20, -11], [37, -27, 32, -37], [-23, -12, 4]] Output:
[ "[-9361, -235, -5117, 39, -35, -11, 36963, -23]" ]
task852-fd0b44ab81cd483ab206ab5309a6633c
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, -37, -32], [-16, -43, -9], [-4, -47, -43, -35], [35, -40, 47, 15, 23], [-17, 43, 15, -45]] Output:
[ "[1739, 387, -70735, 567525, 493425]" ]
task852-d8a1fb6d437a4c0cb0ddf5da35bd9f3f
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, -14, 31], [-40, -10], [17, -8, 24], [29, 8, 8, 5, 24], [43, -23, -12, 15], [-2, -46, -30], [48, -2], [-9, -15, 17, -6, -42]] Output:
[ "[1271, 0, 17, 145, -14835, 0, 0, 2295]" ]
task852-8ed278dba7234ee3afe66df2dfd4c804
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, 18, -15, 17, -2], [25, -21, 34, -34, -41], [-4, -14, 42, 36, 5], [-17, -6, -27, -15, -39], [-28, -27, 50, 20, -18], [21, -17, -41, 15], [27, 8, 35, -22], [46, -50, -20, -24, -23]] Output:
[ "[-255, 21525, 5, 268515, -27, 219555, 945, -23]" ]
task852-43b7e2fabafe4c7494272317d18f53d0
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, -23, -31, 30], [23, 43, 12], [-13, 0], [7, -15, 9, -36], [41, 13, -12, -7], [-29, 11, -28], [49, 0], [43, -22], [-9, -19, -3, 2], [-47, 20]] Output:
[ "[713, 989, -13, -945, -3731, -319, 49, 43, -513, -47]" ]
task852-83859facdac6450997e6bec9bc0f2591
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[20, -5], [34, -9, 28, -43], [3, -45, -7, -24, 23], [-40, -26, 27], [-18, 3, -25, -7, -47]] Output:
[ "[-5, 387, 21735, 27, -24675]" ]
task852-fa256388b0c24bc38f4ad6a3d40681f5
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, 46], [27, -42], [-30, -12, -27, 8], [4, -46], [34, 6, 40, 10], [45, -18, 36, 25, 5], [45, 0, 17, -37], [13, 2], [32, -46, 48, 9], [-34, 19], [-41, -22, -32, 12, -47], [-5, 12, -47]] Output:
[ "[0, 27, -27, 0, 0, 5625, -28305, 13, 9, 19, 1927, 235]" ]
task852-c90c03fa2cce400fb61c24a4b043c8c4
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, 30, -8, 45, -32], [-6, -7, 21, -11, -15], [-25, -30, 45, 48, 43], [35, 5, -9], [45, -20, 32], [12, -26, 4, -46], [-14, -10, 35, 7, 22], [-3, 7], [-37, -17], [37, 33, 27, -2, -20], [-19, 38, 21, -2, 8], [-28, 8, -3, -40, -29], [33, -44], [36, -13, -42, -7, 25], [-46, -40, -21, -33, -32]] Output:
[ "[45, -24255, -48375, -1575, 45, 0, 245, -21, 629, 32967, -399, 87, 33, 2275, 693]" ]
task852-67b3d5449cbc4da185f6b82ed5d72a71
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, -18], [14, -17, -3], [1, 40, -45], [-37, -25]] Output:
[ "[47, 51, -45, 925]" ]
task852-6b7b771c90d04f37869c8bebc044ac89
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-25, 8, 3, 39], [32, 35, -40, -35, 8], [-43, 7, 32], [-21, -43, -13, 11, 17], [-11, -4], [50, -5, -16, -48], [-26, -34, -45, -33], [11, -28, 28], [-33, 9, 37, 29, -17], [18, -27, 5, 49], [-14, -23, 6, 21, 25], [29, -8], [-19, 5, 36, 39, 1]] Output:
[ "[-2925, -1225, -301, -2195193, -11, -5, 1485, 11, 5417577, -6615, -12075, 29, -3705]" ]
task852-f277582e67cb4f8e9498aaa42bfa6cca
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, 13, 37], [21, -6, -22, 23], [0, 37, 33, -46], [-28, 3, 43], [29, -19]] Output:
[ "[15873, 483, 1221, 129, -551]" ]
task852-5aa89bb72178412a830da7a30bfc9c46
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, -33], [-18, 35, -45, 41], [-37, -9, 7, 26, -35], [-5, -49, 5], [-37, -14, 18], [-44, 18, -27, 43]] Output:
[ "[-33, -64575, -81585, 1225, -37, -1161]" ]
task852-3eda4e9355db40c4b62b01110312abb9
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-48, 9, 45, 25, 16], [-44, -41, -45], [31, 12]] Output:
[ "[10125, 1845, 31]" ]
task852-4d7b91d91c2d4daaac55756f0d3bb497
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, 23, 45, -18, 19], [1, 29, -33], [-3, -31, 40], [50, 4, 44], [-36, -18], [23, 1, 21], [49, 28, 6], [-10, 18, -22, -46, -33]] Output:
[ "[-845595, -957, 93, 0, 0, 483, 49, -33]" ]
task852-03a04aad71fc469f85d952108f65ae13
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, 11], [-4, 38, 12], [35, -25], [-15, 21, -21], [0, 46, -12, -27], [-18, -11, 8], [-33, 20], [15, 5, 36, 43, -8], [-21, 32], [6, 40], [-15, 9, -44, -9, 39], [-7, 41, -6, -30], [33, -26, 22], [15, -20, 36, 5, -7], [49, 27, -28, 43]] Output:
[ "[11, 0, -875, 6615, -27, -11, -33, 3225, -21, 0, 47385, -287, 33, -525, 56889]" ]
task852-4ccdd826cea248b785badf65b2970945
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, -32, -45, -14], [-13, -4, 2], [-44, 17, -22, 50], [35, -40, 22, -33], [40, 14, 7, 2]] Output:
[ "[-45, -13, 17, -1155, 7]" ]
task852-83b6370129b540b6851206694924f71b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-40, -3, -15], [-26, -17, -14, 9], [-19, 12, 14, 26], [-45, 27], [3, 2, 44], [40, -5, -45, 44], [40, 0, -39, 20], [41, 41, 39, -24], [-26, -25, 41]] Output:
[ "[45, -153, -19, -1215, 3, 225, -39, 65559, -1025]" ]
task852-1a5580d96a67465cbfe7dc279184ed6b
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, 23, -28], [-4, 33, -6, 15], [-2, 48, -7, -20]] Output:
[ "[23, 495, -7]" ]
task852-80eaec2ed0324c88b5be7a338aaa283c
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, 44, -29, 31], [13, 0, 24], [-27, -22, -10, 46, 21], [8, -45], [2, -19, -36, 4, 28], [-24, -17, -15, 48, 20], [22, -38], [-27, 19, -23], [26, -5]] Output:
[ "[-899, 13, -567, -45, -19, 255, 0, 11799, -5]" ]
task852-770eeb8e1d214c6386ad6c1b73575641
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, -34], [-13, -3, 6], [17, 37, -31], [-30, 40], [-7, -32, 12, -50], [20, 23], [16, -48, 33, 34, 17], [-40, -35, 5], [31, -15], [-19, -27, 21, -48]] Output:
[ "[0, 39, -19499, 0, -7, 23, 561, -175, -465, 10773]" ]
task852-00689ee45cee42b1924e729dc4f4d72a
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, 9, 35, -40], [-48, 14], [-13, -11, 40, 11, -47], [8, 14, 44, -40, 36], [17, -36, -25, -14, -32], [-28, -27, 22, 21, -16], [48, 1, 1], [27, 26, -49, 32], [-25, -38, -50, 38], [-33, -30, 45, -35, 31], [5, -16, -49, 46, 25], [0, -25, -1, -49], [-8, -7, 41, 2, -2]] Output:
[ "[-12285, 0, -73931, 0, -425, -567, 1, -1323, -25, 1611225, -6125, -1225, -287]" ]
task852-23a2ac5534534d70bc1d3469f2706b71
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, -8, -36], [42, 18, 29, 33, 34], [13, 13, -39]] Output:
[ "[0, 957, -6591]" ]
task852-9284788a81d04a29ac44002c338599ed
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, -11, 38], [-6, 45, -29, -12], [6, 14], [43, 50, 46], [27, 40, -13, 24], [36, -41, 3, -46, -33], [35, -48]] Output:
[ "[-11, -1305, 0, 43, -351, 4059, 35]" ]
task852-a8f6d7633d2f4b2a9c9d219cd569b601
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, 34, 45, 48], [18, -18, -5, -48], [49, -10, -28, -20, -3], [-21, 36, -16], [-47, 14, 37, 4, -27], [36, -42, -16], [11, 27, -11, 7, -6], [-44, -1, -37, -39, 33], [-21, 44, 32, 43, -43], [22, 12, 29, -23, 3], [-37, 48, 19], [23, 44, 23], [-19, 8, 39], [25, -13, 13, -33]] Output:
[ "[45, -5, -147, -21, 46953, 0, -22869, -47619, 38829, -2001, -703, 529, -741, 139425]" ]
task852-3f33a0d177314099903030cb8b383cc7
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, -6, 11], [36, -46], [34, -11, -17, 25, 12], [39, 25, -28, 11, -6], [31, -39, 8, -40, -31], [18, -21], [34, 41], [44, 35, -13, -20], [-31, 16]] Output:
[ "[-429, 0, 4675, 10725, 37479, -21, 41, -455, -31]" ]
task852-2fc97dacb0d641b097e3f82dadafc9c0
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, 45, 22, -42], [-14, -43, 8, -46, -15], [8, 41], [49, 11], [-35, -7, 9], [-37, -20, 3], [27, 18, 9, 46, 42], [-49, 44], [-14, -14, 5, 32, -26], [-40, -8, -4, 16], [-11, -38, -7, 20, 24], [-32, -44, 9, 45], [-43, -28, -37, 21, 9], [-36, -37, 32], [-11, -14, -31]] Output:
[ "[45, 645, 41, 539, 2205, -111, 243, -49, 5, 0, 77, 405, 300699, -37, 341]" ]
task852-60d174cc51424fc9bb6d1e063710cee1
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, 9, -27], [-34, -5, 2, -46, -10], [12, 26, -50, 31, 44], [12, 20], [30, 35, 19], [-12, -21, 47, 36, -18], [-36, 45, 19, 40], [-33, 42, -16, -39, 37]] Output:
[ "[-243, -5, 31, 0, 665, -987, 855, 47619]" ]
task852-d53ae0e551804704841ce9921169c856
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[17, 30, -40], [-19, -16, 3, -2, 28], [-26, 47, -23], [-42, -50, 40], [-38, 41, -30], [42, 29, 24], [12, 7]] Output:
[ "[17, -57, -1081, 0, 41, 29, 7]" ]
task852-fc2fc130292e4d658b575f251d161260
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, 46, 1, 6], [4, 14, -35, -6, 20], [-49, -5], [-17, 30, 16, -30, 19], [-5, -1, 21, 8, 3], [20, -15, 41], [-11, -50], [-44, 30, -13], [13, -17]] Output:
[ "[13, -35, 245, -323, 315, -615, -11, -13, -221]" ]
task852-aefad19534ec47a890454a17216a04ca
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, -23, -45, 29, -23], [-17, -3], [3, 5, -45, 37, -46], [-4, 38, 3], [31, 28, -16, 31], [-41, 2, 47, 43], [0, -6, 20, 6], [-2, -11, -3], [-18, -36, -3, 13, 26], [-3, -34, -16], [-47, 30, 6, 8, 36], [-12, -33], [1, 19, -7]] Output:
[ "[-690345, 51, -24975, 3, 961, -82861, 0, 33, -39, -3, -47, -33, -133]" ]
task852-35ef30e3354e4375a9c4bc7824358b52
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, -17, -30], [46, -3, -47, 19], [-12, -19, -31, 14], [12, 19], [-20, 21, -42, 7, -19], [18, 32, -37], [-14, 13, 36], [-26, -36], [36, -27, 1], [-11, -47], [-34, -48, -25, -36, 43], [-22, -23], [32, -13, -47, 7, 49], [13, -34, 8, 1]] Output:
[ "[-17, 2679, 589, 19, -2793, -37, 13, 0, -27, 517, -1075, -23, 209573, 13]" ]
task852-dfa861429933467ca74b0c1ff640d748
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, -32], [-6, 34], [18, 15, 3, -50], [47, 47, -50]] Output:
[ "[-19, 0, 45, 2209]" ]
task852-765f74a21c4b4e479e7ae5bb9f0b3180
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, 43, -49], [-10, 12, 26, -45, 9], [-8, -28, -41, -13], [7, -41, 4, -29, -48], [45, -31, 10, -17, 48], [-9, 19]] Output:
[ "[-2107, -405, 533, 8323, 23715, -171]" ]
task852-04123dd1b21c4368ba9380f2922fecd8
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], [-1, -33, 13], [48, 1, 27, 19], [40, -11, 40, 21, -10]] Output:
[ "[1247, 429, 513, -231]" ]
task852-711eb73719b145e38ed494a3cee1e2ae
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, -11, -27], [-6, -30], [46, 21], [-23, -40, 29, -20], [31, 7, -34, 13, -39], [-12, -7], [8, 46, 10, -42, 10], [22, -8, -43, 2], [-34, -30, -20, -29, -38], [8, -42, 1, 48], [-22, -38, 49, -49], [39, 46, -19, -44], [27, -36]] Output:
[ "[9801, 0, 21, -667, -110019, -7, 0, -43, -29, 1, -2401, -741, 27]" ]
task852-82e7b0bb3d364dec806c854310e92d1a
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-20, -38, 40, 46], [24, 43], [24, -31, -33], [-37, -16, 48], [20, 34], [8, -15], [11, -13, 16, -25, -17], [-38, 4, 29, 41], [-38, 11, 24, 22], [17, 22], [-48, -29, 44, -44, 44], [-21, 5, 13, -44, -12]] Output:
[ "[0, 43, 1023, -37, 0, -15, -60775, 1189, 11, 17, -29, -1365]" ]
task852-f3dfbc34dcea4015969844701979fd5b
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, 25, 4, -42, -7], [-44, 45, -38], [-29, 50], [-28, -22, 29, 39, 5], [-41, -33, -22], [10, 18], [28, -8, 36, -32, -17], [18, 46, 40, 0], [32, -14, 16, 27, 2], [-40, 28], [36, 13, 19], [-44, 16, 18]] Output:
[ "[6825, 45, -29, 5655, 1353, 0, -17, 0, 27, 0, 247, 0]" ]
task852-1d7d8814d1d0475faf93f9fd81a4dfb9
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, 10], [-37, 3], [26, 50, 2, 31], [-25, -6, 7], [47, 7, 10], [25, -43], [25, 30, -24], [-24, 25, 30], [-1, 1, 42, -14, -36], [-30, 15, 44], [15, 6, -2], [-42, -37, 45, -13, 27], [50, -50, 6, 31]] Output:
[ "[0, -111, 31, -175, 329, -1075, 25, 25, -1, 15, 15, 584415, 31]" ]
task852-53ab3e53389c4b1697ab656e9faf418e
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, -2, 48], [-22, -18], [25, 13, 3, 8], [-3, 19, -46, 43, -9], [-4, 32, 24, -28, -12], [47, 44, -49, 49], [42, -2, 5, 28]] Output:
[ "[-45, 0, 975, 22059, 0, -112847, 5]" ]
task852-4fdff27679c244638c399fcc37edc7b3
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, 14, -12, -25, -34], [31, -7, 47, -36, 10], [-21, 40], [0, 17, 31, 0]] Output:
[ "[-275, -10199, -21, 527]" ]
task852-3042152196664bc58b3b5ded321337d9
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, -27, -39, 0], [17, -5, 29], [-9, -33, 48, -11, 34], [27, -23, -3, 23], [13, 30, 39], [-44, -31, 30], [-8, -32], [-19, 30], [-3, -48]] Output:
[ "[1053, -2465, -3267, 42849, 507, -31, 0, -19, -3]" ]
task852-60e7a74a5c2b4c42a9146bb488b88ff9
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, -4], [-33, 3, 30, -46], [32, -24], [-47, 40, 37, 7, 27], [-38, -27], [-47, 40, 33], [-18, -13, 24, -30], [-15, 40, 18, 29, -26]] Output:
[ "[-19, -99, 0, -328671, -27, -1551, -13, -435]" ]
task852-e8b61ddbe87a4783a869b51185e2ac10
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, -3, -34, 10], [-23, -37, 4, 22], [16, -29, -13, 50], [40, 37, 45, -45], [39, 39, 31, -20, 44], [-38, -32, -45], [11, -26, -43, -37, 29], [9, 39, 19, -21, -47], [0, -46, -46], [-6, 13, -5, -20, 33], [35, -39, -26, 50], [41, 22]] Output:
[ "[135, 851, 377, -74925, 47151, -45, 507529, 6582303, 0, -2145, -1365, 41]" ]
task852-a3f0c8059030413f8d19d6e5318b5c3a
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, -32, -37], [-34, -27, -22], [25, -12, -24, -40], [36, -28, -48], [-24, -28, 43, 6], [11, -15, 37], [-6, -9, -2, -36]] Output:
[ "[-1739, -27, 25, 0, 43, -6105, -9]" ]
task852-fc65e969cd5c4d86a33065106a17c8ed
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, -47, -8], [12, 9, 33, 1], [21, -49, 16, 14, 28], [1, 32, -19, -18], [-2, 2], [-26, -25, -41, 45, 3], [-10, 15, -16], [29, 42, 24], [19, 45, 41], [9, 1, -45]] Output:
[ "[-47, 297, -1029, -19, 0, 138375, 15, 29, 35055, -405]" ]
task852-8571656c7b9249689f790fa49ebab3a4
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, -8, 31, 33], [-48, -18, -33, -1, -48], [26, 13, -9]] Output:
[ "[7161, 33, -117]" ]
task852-0201d1da397740e0863381f60363a852
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, -37, -44, 30], [16, -37, -43], [14, -13], [-29, -4, 32, -1], [24, 5], [-48, -27, 17], [43, -27], [-27, 14], [29, -47, 5, 11]] Output:
[ "[111, 1591, -13, 29, 5, -459, -1161, -27, -74965]" ]
task852-b9bef2d8619d4c1ea27801e38d86e93d
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-48, 50], [-1, 25, -9], [49, -12, 37, -8], [50, 15], [31, -37, 47], [31, 38, -22, -12, -6], [-21, 19, 28, -16, 50], [-9, -28]] Output:
[ "[0, 225, 1813, 15, -53909, 31, -399, -9]" ]
task852-57837ec9bc654cdeb149a380adfa010a
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, -3, -25, 18], [-12, 45, 37, -34], [-40, -47, 39], [-10, 23, -4], [-5, 40, 38, 45], [-45, 16, 1, -9, -7], [-32, 43], [36, 2, 46, 45], [43, -22, 28, -39], [22, -36, -35, -16], [-27, -35, -25]] Output:
[ "[75, 1665, -1833, 23, -225, -2835, 43, 45, -1677, -35, -23625]" ]
task852-178c9f800bc0479e835ea4000cb18ac4
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, -24, 12, -48], [-8, -39, 7, -48, 49], [21, 18], [-7, -28, -11, 42], [28, 4, -47, 49, -16], [-27, 4, -7, 41], [-13, -25, -22]] Output:
[ "[9, -13377, 21, 77, -2303, 7749, 325]" ]
task852-61bfe1ff12f9439faf0005abd2ec7f69
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, -45, 49, -37, 44], [-15, 10], [-13, 6, 34], [-10, 17, -1, 30, 1], [-46, 16, 10]] Output:
[ "[81585, -15, -13, -17, 0]" ]
task852-6606c8fada5d475d8361f41a6827e023
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, -24, -15, 16], [40, 7], [-46, 31], [30, 8], [5, 31, 44, -30, -19], [38, -45], [29, -31, -13], [-47, -29, 40, -36, -36], [30, -29, 26, 44, 13], [7, 11, 12, 25, -14], [13, 47]] Output:
[ "[-405, 7, 31, 0, -2945, -45, 11687, 1363, -377, 1925, 611]" ]
task852-5830c82837264813872d8c23d3b2db59
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-27, 22, 14], [-36, 1], [19, 33], [35, -49], [-15, 7, 22, 24], [-18, -14, -23, 42], [4, 26, 30, 16, 33]] Output:
[ "[-27, 1, 627, -1715, -105, -23, 33]" ]
task852-2bbdef390fdc4a35a362455ac548196c
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, 16, 22, -18], [-18, -46, 21, -20, 25], [22, 11, -48, -24], [45, -9], [1, -28, -8], [-3, -22], [-48, -13], [16, -26], [30, -31, 39], [-13, -17, -18, 36], [-25, -19, 17, 41], [7, 4, 14, 2], [-32, -10, -24, -34, 46], [-30, -23], [26, 4, -4]] Output:
[ "[-43, 525, 11, -405, 1, -3, -13, 0, -1209, 221, 331075, 7, 0, -23, 0]" ]
task852-658ff3ac687343f48e220b9b2a90305d
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, 21], [-8, -3, -50, 19, -31], [-46, 30, -25, -6], [41, -16, 25, 42], [40, -15, 5, 28, 48], [-24, 16, -33, -8, 42]] Output:
[ "[693, 1767, -25, 1025, -75, -33]" ]
task852-8740b02010d34ece8def5ee494b90eef
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, 34, -5, 38, -18], [-46, 22, -26], [8, 2, -33], [-22, 18], [-29, -42, 6], [19, -21, -15, 9], [-31, 43, -12], [-33, 36, 8], [-14, 17, -38, 23], [37, 49, 0], [40, 42, -40, 37], [1, -43]] Output:
[ "[-115, 0, -33, 0, -29, 53865, -1333, -33, 391, 1813, 37, -43]" ]
task852-3f61c7edc10445bc80ed0ce7b3fde606
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, -5, 13], [-33, 28, -26], [44, 45, 6, -46], [12, -41, 31], [20, -32], [-38, 46, 31, -48], [0, -30], [17, 20], [13, -25, -24, -23], [-8, 13, 36, 3, -39], [44, 20], [-38, 43, 16], [-16, 27, 1, 48]] Output:
[ "[3055, -33, 45, -1271, 0, 31, 0, 17, 7475, -1521, 0, 43, 27]" ]
task852-28080586fe6941148fad1ace4c9c4438
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-32, -34, 29, 29], [-1, 36, 47], [-8, -12, -8, -22], [-33, -32, 37, 30], [-14, 20]] Output:
[ "[841, -47, 0, -1221, 0]" ]
task852-3bd15a56e82547fda67749400a7ad19b
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, 21], [36, 41, -37, 29, 6], [5, 21, -11, 28], [-42, 14, -43, 30, 8], [38, 7, -27], [-5, 15], [1, 42, -47, -1]] Output:
[ "[-483, -43993, -1155, -43, -189, -75, 47]" ]
task852-c744c182337840d5b3cbab4cd1abee64
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-25, 2], [-48, 15], [23, -28, -14, -19], [15, -41, -10, 43, -44], [-8, 1, -1, -48], [-20, 41, 0, 42], [13, -18], [27, 14, 50, -22, -33], [11, 34, -28, 47], [-33, 14], [-50, -1, 1, 28], [7, 49, 32], [-44, 8, 36]] Output:
[ "[-25, 15, -437, -26445, -1, 41, 13, -891, 517, -33, -1, 343, 0]" ]
task852-c76a07a7b57b4293844e155ef171b9c5
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, -34, 48, 47], [-19, -33, 12, -7], [-32, 34, -35, 34, 14], [46, -31, 2, 7], [19, 49]] Output:
[ "[47, -4389, -35, -217, 931]" ]
task852-aa87771afad244fabb055251998e4746
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, -7], [-45, -39, -35, -34], [-34, 14, 20, 12, 0], [28, -22, -18], [-3, 9], [30, 48], [39, -39], [-6, -44], [-5, -25], [-15, -30, 33], [-5, -43, -37, -28], [27, -25, -14], [-12, 22], [-28, 37, 50, -34, -13], [48, 34, 28]] Output:
[ "[217, -61425, 0, 0, -27, 0, -1521, 0, 125, -495, -7955, -675, 0, -481, 0]" ]
task852-b786d9dc495d45c2882f9da57897999f
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, 43, -16], [0, -40, -11], [20, 42, 50, -1, -7], [8, -47], [17, 5, 26, -5, 2], [32, -10, -21], [19, -38]] Output:
[ "[2107, -11, 7, -47, -425, -21, 19]" ]
task852-dce6e8fb6dba449d843267add14572a0
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, 40, -26, 10], [0, 30, -32, -35, -3], [-24, -46, 44, 20, 36]] Output:
[ "[0, 105, 0]" ]
task852-f7be9388e27743c8a504784ecc391266
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-25, -13, -38, 47], [22, 40, -17, 12, 30], [-41, 27], [-27, 45, 43, 0, 28], [-30, -25, -2]] Output:
[ "[15275, -17, -1107, -52245, -25]" ]
task852-814caeb0243444a99abe19cb0b660cbd
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, 45, -25, -40], [-5, 48, -42], [28, 17], [43, -38, 10, -13], [45, -31, -34], [-35, -2, -6, -13, -46], [48, 39]] Output:
[ "[7875, -5, 17, -559, -1395, 455, 39]" ]
task852-b6b2c682d0d246f68249c3580ff47f7d
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-17, -39, -20], [41, -49], [-47, -39, 20, 6, 31], [45, -8], [35, 16, 33]] Output:
[ "[663, -2009, 56823, 45, 1155]" ]
task852-e8b954fde16b464f9a80c318a79c1ff5
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, 39, 15, 28, 44], [47, 22, -46, -18], [7, 28, -22, -14, 42], [-46, 19, 19], [-26, -49, -34], [49, -46], [22, 47, 18, 41], [-23, 41, -37, 26, 30], [-3, 3, 1, 44], [7, 26, 22, 19, -19], [26, 36, 3], [37, -36]] Output:
[ "[-13455, 47, 7, 361, -49, 49, 1927, 34891, -9, -2527, 3, 37]" ]
task852-9d45a051de9f4fedb23e78282b2308f5
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, -30, 28], [-21, 21, -6, 27], [43, 37, -21, -14], [-2, 40, -25, 19], [19, 6, 23, -49, -23], [40, 22, 11, 9], [47, 1, 7, 29], [11, 4, -39, 19, 4], [39, -37, -16]] Output:
[ "[1, -11907, -33411, -475, 492499, 99, 9541, -8151, -1443]" ]
task852-d64c135556c6488b912051c02a3128a0
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, 13, -31, -22], [25, 2, -19], [-44, -19, 46, -40], [39, -3], [-9, 41, -43, -10, 39], [3, 7, -15, -12, 23], [46, -11, 2], [-38, -26, 28, -25, -35], [-11, -32], [14, -33, 11, 20, 19], [47, -11, 41]] Output:
[ "[-403, -475, -19, -117, 618813, -7245, -11, 875, -11, -6897, -21197]" ]
task852-2bdfa683fff74024b4c1142b3460025e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[21, 29, -38, -24, -2], [-30, -41, -4, -9, -23], [-25, -45, -41, 43]] Output:
[ "[609, -8487, -1983375]" ]
task852-da2b62a20c4b45f6b6c1c9f1cde5ff21
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[20, 22, -31, 5], [39, -5, -14, 44, 10], [39, -43, -19, 24, 49], [-25, -39, -31, 10], [50, -30, -47, -11], [28, 33, -15, -1], [-41, -44], [25, -46], [12, 21, 28, 20], [4, -50, -33, 2], [-15, -29], [-7, -45], [-17, 7], [-19, -10, 37], [-21, 45, 24, 39]] Output:
[ "[-155, -195, 1561287, -30225, 517, 495, -41, 25, 21, -33, 435, 315, -119, -703, -36855]" ]
task852-9cd5d790538e4c6aac3cdbefc9df3cc0
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, 27, -42, -5, 30], [25, -11, 37, -20], [-41, 5], [19, -14, -19], [40, -2, -32, -50, 36], [15, -35, 5, 27, 25], [-44, 23], [18, 18, 41], [8, -23, -23, 47, 44]] Output:
[ "[-135, -10175, -205, -361, 0, -1771875, 23, 41, 24863]" ]
task852-c6d3295423244412a3e9ea869c31c9db
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, -30], [14, -10, -8, -15], [-6, 33, -1], [-8, 26, 44, -35], [-38, -27, 4, 43, 13], [18, 0, 0, 23]] Output:
[ "[49, -15, -33, -35, -15093, 23]" ]
task852-bae5e25176704f2d9d14ddce669b7a56
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, -44], [-25, -11, -45], [23, 49, 43, -28, 50], [9, 32, 6, 14, 28], [23, 26, 9, 4, 40], [13, -40, -38, 23], [-24, 27], [26, 49, 24, -13, 48], [-50, 18], [-1, 9], [15, 37, -39, 14, -15], [-14, -6], [26, 49, -50, -37]] Output:
[ "[-7, -12375, 48461, 9, 207, 299, 27, -637, 0, -9, 324675, 0, -1813]" ]
task852-599cf9445d1e48d6ac22f83d7d6085ec
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, 38, -3], [48, 39], [-8, 46, 34, 13, 30]] Output:
[ "[69, 39, 13]" ]
task852-28a0378df4914216bfb0ea695157cad1
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, -11, -27, -26], [-49, 20, 22], [33, -41], [-5, 44, 14, -32], [10, -38, 27, 33], [-22, -13, 12], [25, -18], [-47, -44], [40, -50, -9, -47], [-25, -28], [19, 25, -42]] Output:
[ "[297, -49, -1353, -5, 891, -13, 25, -47, 423, -25, 475]" ]
task852-e24b2b5037f84763ba8929f437cdabb0
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, -4, 43, 28, -43], [39, 14, 2], [-39, 45], [-30, 11, -37, 12]] Output:
[ "[-61017, 39, -1755, -407]" ]
task852-1a6e463d93074895a3d3ed3d9d050639
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, -25], [37, 22], [38, 24, -21, -11]] Output:
[ "[-25, 37, 231]" ]
task852-9b5ff0dbcd514c489b5228e2a194af82
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, 32], [-31, -37, 47, 9], [41, -5, -38], [-11, 32, -4], [-25, -12, -9, -26], [-11, -50, 41], [-23, 43, 38], [1, 45, -43, -25], [-36, 1, 25, -48]] Output:
[ "[0, 485181, -205, -11, 225, -451, -989, 48375, 25]" ]
task852-97c49ee534f146138f346b91f4897bb8
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, -26, 17, -40], [28, 31, -3, 4], [-45, -34, -19, -48], [-25, -49]] Output:
[ "[-697, -93, 855, 1225]" ]
task852-863cffa1d192420b81f20653e07e741b
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, -8], [29, -30], [-8, 15, 0, -10], [-13, -8, 41, -34], [-20, 4, 39, 10, -33], [-9, -15, 29, 35]] Output:
[ "[0, 29, 15, -533, -1287, 137025]" ]
task852-2f587086474a4799856937e8aecca10c
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, 0, 31, -44, -22], [24, 50], [-26, -15], [33, 8, -8], [18, 28], [34, 43], [-38, 42, 30, 10], [20, 27]] Output:
[ "[1271, 0, -15, 33, 0, 43, 0, 27]" ]
task852-7b1013e5e178486ca77f510d12ac88f7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-25, 45, -38, -8], [-22, -27, -35, 0, -37], [17, -33, -23], [4, -2, -12, -31], [-44, 6], [-36, 11, 44, 25, -17], [-30, 46, -27, -27, 9], [-7, -36, 18], [-26, 30, 12, -49], [30, 1, 18], [-13, 34], [-41, -17, -49, -6], [21, -20, -42, 12, -23], [-49, 33, 8, 41], [-48, -24, -38]] Output:
[ "[-1125, -34965, 12903, -31, 0, -4675, 6561, -7, -49, 1, -13, -34153, -483, -66297, 0]" ]
task852-96a8584fe2224d1fa9fa0f7bc99eea24
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-1, -24], [16, 32], [32, -18, -44], [3, 24, -37, 28, 4], [-24, 44, -12, -9], [-18, -48], [-14, -14, 32, 7, 44], [11, 21], [-37, 49, -48], [47, 26], [1, -45]] Output:
[ "[-1, 0, 0, -111, -9, 0, 7, 231, -1813, 47, -45]" ]
task852-defbab156d1645da84b21c49724da6aa
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, -38, -48, -11], [-18, -4, 0, 11, 39], [44, -19, 12], [-15, 8], [-2, 42, 21], [29, -9, 39, -9, 18]] Output:
[ "[-11, 429, -19, -15, 21, 91611]" ]
task852-6b58d3126d994bbbab6c7ba887e6fc60
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, 17, -5, -6], [-7, -38, -43], [-22, 31, 42], [44, 45, -17], [37, -16], [-10, 38, -16], [-4, 0, 26, -40], [28, -35, 27], [3, -22, 19, -20], [-44, 49, 8, -18]] Output:
[ "[-1105, 301, 31, -765, 37, 0, 0, -945, 57, 49]" ]
task852-45f2466d48b3474da54ff6fddb61232c
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, -7, 17], [20, 19, -3, 17], [-11, -12, -27, -31], [-28, -29, 30, 34, 1], [-32, 2, -42, -40], [39, -40], [46, -34], [32, -6], [-12, 25, -34, -7, 6], [8, -30], [18, -11, 25, -29], [-3, 1], [-41, -45]] Output:
[ "[-119, -969, -9207, -29, 0, 39, 0, 0, -175, 0, 7975, -3, 1845]" ]
task852-5cb75d7d4d8e4f66b7f62d59446700fe