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: [[14, -42, 28, -6, -46], [2, -40], [20, 21, 6], [-43, -9, 47, 44, 18], [13, -6, -48, -21], [27, 5, -35], [-46, 48], [-12, -7], [19, 42, -8], [24, 31, 25, -32, 17], [-33, 44, 45, -10], [20, 11, -25, 19], [-17, -9, -21, 26], [-31, 42], [-32, -45]] Output:
[ "[0, 0, 21, 18189, -273, -4725, 0, -7, 19, 13175, -1485, -5225, -3213, -31, -45]" ]
task852-a701006c553546b8b58e6e032921722c
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 49, 1, 4], [-36, 4, 33], [18, -45, 28], [39, 43], [40, 23, -38, -50], [8, 27, -41, -42, 34], [-3, 11, -40], [-33, -8], [19, -45]] Output:
[ "[49, 33, -45, 1677, 23, -1107, -33, -33, -855]" ]
task852-9baac0fc52014e54907e562d88ea4b4b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 47, -46], [-33, 46, -17, -1], [42, -25, 21], [-42, 38, 8], [-21, 2, -11, 9], [42, 34, 47], [-34, -46, -8], [14, 7], [-23, 15, -48, 47]] Output:
[ "[2209, -561, -525, 0, 2079, 47, 0, 7, -16215]" ]
task852-34d873abc2a24c0cae15f2dfb813f0c7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 17, 21], [50, -38], [46, -39, -47], [-19, 19, 28, -35], [-45, 30], [42, -23]] Output:
[ "[-116025, 0, 1833, 12635, -45, -23]" ]
task852-24239d8c33884c42a0e0b17ee396de76
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 39, -5], [34, -4, -35, -1], [-21, -37, -1], [37, 8, -27], [6, -2, 17], [-16, -16, -49]] Output:
[ "[-195, 35, -777, -999, 17, -49]" ]
task852-9ae3c27cb0e84557805d7fe822b7ebb2
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -43, 23, -16], [-32, 16, 39, 44], [-28, -25, -43, -18, -12]] Output:
[ "[-18791, 39, 1075]" ]
task852-2f1b4809096c45838b3ef4b218171113
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 30, 14, -31], [28, -27], [11, 6, 19], [48, 23]] Output:
[ "[-1023, -27, 209, 23]" ]
task852-b0bc41da1bc545ecb795e4fb6383ede1
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-12, 23], [6, 49], [-50, 39, -34, 44, 31], [7, 50, -6], [20, -45, 8], [12, -27], [44, -8, 18, -25, 1]] Output:
[ "[23, 49, 1209, 7, -45, -27, -25]" ]
task852-ecc1cbb31aeb4a3ca8126c51c04da25d
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -28, 15], [-19, -37, -24, -49, -50], [21, -33, 12, -29], [48, 2, 49, 10, -19], [-33, -39, -44, 28, 0], [-32, -14, 23], [2, -25, -22, 22], [50, -33], [18, 28], [35, 38, -48, 46], [-19, 32, -30], [-30, 38, -8, -16], [-4, 20], [21, -19, 11, 14], [-6, 24, -12, -7, -23]] Output:
[ "[-555, -34447, 20097, -931, 1287, 23, -25, -33, 0, 35, -19, 0, 0, -4389, 161]" ]
task852-2fb082f5076f495199f33684aae2be37
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-30, 36, -29, 10], [41, -38, -10, 18], [14, 13], [0, 21, 15, -28], [-6, -3], [42, -50, 45], [13, 45, -23]] Output:
[ "[-29, 41, 13, 315, -3, 45, -13455]" ]
task852-5a3bfe0fe7c14edabbf4557ce02b0daa
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-31, -25, 49, -29, -37], [-19, -29, -30, 39, -23], [30, -45], [-43, -44, 13, -28, -39], [23, -13, -12, 4, -38], [39, -42, 46], [18, 2, -31, 21, -24], [44, -31, 37], [-23, 31, 3], [-4, -15, -43, -15], [-38, -39], [11, 22, 24], [15, -14, -18], [-32, -9, -33, 41, -49]] Output:
[ "[40747175, -494247, -45, 21801, -299, 39, -651, -1147, -2139, -9675, -39, 11, 15, -596673]" ]
task852-a197a8d23a05411b91b59d4da7dbe1ea
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[34, 39, 39], [32, -42], [35, -22, -31], [42, 44, 17, 7]] Output:
[ "[1521, 0, -1085, 119]" ]
task852-187b3ca1d90d49c7905973a8502e134c
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 38], [-17, 46, 15], [-18, 12, -44], [-22, -41], [18, -6, -6], [-13, 2, -47, -14, 25], [-42, 8, 38], [23, 33]] Output:
[ "[-19, -255, 0, -41, 0, 15275, 0, 759]" ]
task852-22edc65cfec64133a9bfa8def16cf50f
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 22, -17, 7, 42], [11, -13, 39, -40], [-28, -20, 12], [-12, -48], [28, -42, 6], [12, -39, -39, 3], [-2, 9], [33, -26], [-17, -22], [16, -38], [43, -8], [23, 0, 18, 3, 10], [1, 10, -16, 6, 35], [-3, 15], [-27, -34, 5, 49]] Output:
[ "[-4641, -5577, 0, 0, 0, 4563, 9, 33, -17, 0, 43, 69, 35, -45, -6615]" ]
task852-171ce07a257e48aca9bc97a78780bff7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 11], [0, -39, -33, 31], [41, 37, -25, 25], [-9, 48, -36, 1]] Output:
[ "[-165, 39897, -948125, -9]" ]
task852-f80ced9b7c234f129a682e8a7bcded46
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -14, 15, 39, -1], [-10, 37, -1, 18, 28], [50, 16, -8], [12, 32, 30], [-25, 47, 32], [9, -19], [32, -28, 35, 33, -15], [26, -31, 28, 14], [13, -14], [-43, 23], [-27, -1], [-20, 10, 48, 33]] Output:
[ "[-22815, -37, 0, 0, -1175, -171, -17325, -31, 13, -989, 27, 33]" ]
task852-d99da6146374458aa379fbc53fb69501
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 44, -28], [8, 35, -12, 11, 20], [-44, -12, -50], [-7, -26, -50, -25, -26], [39, 49, 7, 19, 16], [-9, -22], [-27, 20, -18], [5, -24, 46, 25], [-15, -33, 11, -16], [37, -43], [-34, -9, -32], [-4, 35, 46, 18], [20, -11, -6, 27], [-49, 2, 10, -37]] Output:
[ "[0, 385, 0, 175, 254163, -9, -27, 125, 5445, -1591, -9, 35, -297, 1813]" ]
task852-408839e00dd640fd993f2b7b0dfaf8a1
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-46, -15, 34, 33], [17, 29, -16, 30, -5], [22, 9, -48], [3, -34], [45, 33, 44], [6, 47, 26, 47, -23], [32, 31, -3, 28, 45], [9, -38, -27, 22, -37], [8, -17, 29, -29, -27], [12, -47, -19], [-9, -25], [-19, -13], [15, -32, -14], [-8, 42, 44, 0]] Output:
[ "[-495, -2465, 9, 3, 1485, -50807, -4185, 8991, -386019, 893, 225, 247, 15, 0]" ]
task852-45fc0eadba9843f68e866ff2bcbec914
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -31, -1], [18, -16, 25, 47], [6, 19], [-29, -17, -28, -39], [-23, 1, 3], [-17, 27, 37, -40]] Output:
[ "[31, 1175, 19, -19227, -69, -16983]" ]
task852-62d4daf4cd9c40a399fce6732b5ec1ff
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 35, 47, -6, -32], [-31, 22, -13, -46], [-37, -36, -36, 48], [-21, 14], [22, -16, -1], [-42, -22], [6, -37, 41], [36, -29, -44, -18]] Output:
[ "[41125, 403, -37, -21, -1, 0, -1517, -29]" ]
task852-de1308beb0054c0582f7936021852530
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -33, -2], [6, -50], [-48, 34, -5], [5, -46], [-37, -34, 31], [-9, -47, -30]] Output:
[ "[-33, 0, -5, 5, -1147, 423]" ]
task852-2164494f7c8c4ebdbfdeafd980491bcf
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 50, -40, 29], [37, 23, -10], [12, 5, 25, 5, 11], [-50, -30, -3], [-44, 10, -20, -7, 16], [46, 38, 26, -2], [-36, -46], [32, 21, -11], [-28, 4, -13], [7, -25, -27, -32, -5], [-3, 50, 8], [-43, 33], [-2, 2, -10, -49, 44], [7, 35, 29, 4, -4], [31, 34, -21]] Output:
[ "[29, 851, 6875, -3, -7, 0, 0, -231, -13, -23625, -3, -1419, -49, 7105, -651]" ]
task852-ff0a33f20a784d7898b3a13874b7a148
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 24, 22, 12, -14], [-8, -19], [-18, 38, -22, -15], [-10, 28], [-22, 20, -9, -8, 0], [39, -10, 9], [-32, 2, 18, 10, 21], [-4, 6, 5, 1, 9], [13, -12, -36, 48, -21], [-33, 23, 24, 40, -8]] Output:
[ "[41, -19, -15, 0, -9, 351, 21, 45, -273, -759]" ]
task852-ba85a22b3be1424fa0b13dfaba8e1450
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 43, 13], [-34, 0], [46, -46, -34, -29], [-45, 34, -12, -22, -22], [-32, 30], [-24, -14, 4, -42], [0, 15, -4, -16], [-38, 19, 35, 33], [33, 49, -30], [-45, -32, -8, -44, -8], [1, -30, 15]] Output:
[ "[559, 0, -29, -45, 0, 0, 15, 21945, 1617, -45, 15]" ]
task852-2bb1acfa138f4eaf8420b9c77fc95d59
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -20, 13, -34], [-26, -17, 40], [-40, 26], [-15, 26], [16, -46, -12], [-7, -33, -37], [30, -25], [-34, -33], [-7, 46, 9], [-38, 20, -1, 21, 29]] Output:
[ "[637, -17, 0, -15, 0, -8547, -25, -33, -63, -609]" ]
task852-ada81d5405e84b0493027100b0c1bba8
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 16], [-19, -33, 5], [39, -9, -50, -12], [31, 20, -31, -9], [-17, -8], [9, 39, 8, 27, 45], [33, 33, 7, -29, 45], [-26, -4]] Output:
[ "[39, 3135, -351, 8649, -17, 426465, -9948015, 0]" ]
task852-d6f1c060aef54111a9d1b8e75551eb45
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-46, -2], [-24, -43], [26, 47, -29, 12], [-27, -8, -21], [-17, -21, -22], [-4, -14, 30], [-21, 37, -26, -38], [43, 40], [22, 23, -45, 10, -32], [9, -20, 38, -12], [-36, 1, -42], [21, -25, -8, -26, 6], [31, 32, -37, 2, 31], [-28, 8, -25, 23], [4, -2, 22, 50]] Output:
[ "[0, -43, -1363, 567, 357, 0, -777, 43, -1035, 9, 1, -525, -35557, -575, 0]" ]
task852-489d6ae66320439f8bf4a9ebc67a2b72
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -36, 12], [-32, -35, -32, 5], [-1, 41, 4], [-47, 5, 30], [15, -4, -36, -6], [-26, -31, -7, -12, 44], [34, -31, 38, -31], [-40, 0, -41, 14, 31], [3, 32, 43], [-33, 6]] Output:
[ "[0, -175, -41, -235, 15, 217, 961, -1271, 129, -33]" ]
task852-a62eff2d7f6c4f2fa6aaeb1f8d7fb8e2
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 12], [23, 40, 35, -43, 23], [-46, -30, -15], [-30, -1, -10, 18], [33, -33, 20], [49, 21, 13, 4], [13, -38], [35, -24], [-27, -8, 37]] Output:
[ "[0, -796145, -15, -1, -1089, 13377, 13, 35, -999]" ]
task852-9c4621bf19ed49c495c6eace32c25871
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -2, 25], [2, 33, -33, 19, 41], [-42, -36, 10, 1], [4, -38, 27, -47, -27], [20, -17], [-36, 10], [-4, -27, 11, 43, -4], [50, -16], [35, 42, -33, 27, 15]] Output:
[ "[-1075, -848331, 1, 34263, -17, 0, -12771, 0, -467775]" ]
task852-8e741150bbc44e5ca5e304d3a3a40d4f
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 21, 9, 31, -8], [-18, -5, 36, 41, 4], [-33, 35, 25], [-6, 11], [-46, 41], [-43, -46, 18], [26, -36, -23], [17, 35, -49], [49, -42], [7, -47, 49], [-25, 7, 22, 23, 29], [30, -27, 29], [-2, 48, -38], [-12, 25, -4, 23]] Output:
[ "[64449, -205, -28875, 11, 41, -43, -23, -29155, 49, -16121, -116725, -783, 0, 575]" ]
task852-06f759054e004022ae8f4b92f2c5cd66
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-49, 36], [0, 16], [-21, -3], [43, 47, -32, 32], [4, -31, -17, -38], [33, 22, 9], [32, 20, 33, -48, -8], [-3, -10, 48, 0], [-16, -4, 29], [-49, 7], [-44, -48, 4, -18], [-9, 27, 37, -26]] Output:
[ "[-49, 0, 63, 2021, 527, 297, 33, -3, 29, -343, 0, -8991]" ]
task852-b6decb09fa454b2d99726bf9eeeb7827
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -23, 34, -6, -27], [17, -29, -35], [-50, 8, -38], [5, -19, 25, 39, 15], [16, -24, 36, -25], [-22, -4, -3]] Output:
[ "[621, 17255, 0, -1389375, -25, -3]" ]
task852-0eba6498b9d94967ad75b200a67cae22
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 33], [-37, 18, -16, 35], [-40, -18, 41, -35]] Output:
[ "[297, -1295, -1435]" ]
task852-f339ee4af55648f182be749ad4287931
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 22, 3], [-42, 29], [50, -26, 41, 45], [23, 0, 18]] Output:
[ "[3, 29, 1845, 23]" ]
task852-7a2bc062ddbf45b6bcb604d1f6875e6b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 37, -13], [38, -39, 4], [49, 8, 15, 17], [-41, 49, -47], [-17, -3, 14], [-21, -4, 32, -17]] Output:
[ "[3367, -39, 12495, 94423, 51, 357]" ]
task852-7e3e88a0ee4a41a18d0b568099fba778
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-33, -12, 25], [30, -30, 10, -44], [11, 49], [33, 37, -17, 29, 27], [-3, 32, 1, 7, 25], [-43, -23], [7, 9]] Output:
[ "[-825, 0, 539, -16252731, -525, 989, 63]" ]
task852-32f5e55c2a0040a2860457e3c8d3b9d7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 35], [8, 42, 37, 20, -11], [-19, -9, -28, 16], [36, -42, 17, -1], [-24, 47, -46, 48, -48], [6, -27, 30, 47, 29]] Output:
[ "[1295, -407, 171, -17, 47, -36801]" ]
task852-4c604b0bcf5c48dfadb91353a0100f21
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -31, 16, 3], [15, -21, -4], [-22, -14, 13], [-30, 20, 14, -15, 36], [45, 45, 24, -35, -50], [50, -33, 49, -38], [-15, -18, 5], [-41, 1, 38, 37, 48], [-5, 17, 17, 21, 13], [-47, -41], [-19, -29, -13], [-17, 30, -15, -21]] Output:
[ "[-93, -315, 13, -15, -70875, -1617, -75, -1517, -394485, 1927, -7163, -5355]" ]
task852-e81fcbd623c1497cb138929cc49e4900
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 18, -49], [-19, 21, -19, -46], [11, -4, -40], [-7, 18, -38, -28, 45]] Output:
[ "[-735, 7581, 11, -315]" ]
task852-77b8e6f6dc154eb9918b5e001c316432
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -10, -5], [46, -20, -24, -29, 31], [-4, -50], [-45, -36], [-5, -14, 48, -21, -49]] Output:
[ "[-195, -899, 0, -45, -5145]" ]
task852-20d26a64acd6491e9864c187e2a215bc
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -28, 41, 34, 13], [7, 1, 26], [3, -16, 18], [-17, -36, 9, -4, -7], [2, 38, -48, -47, -44], [23, 2, 46, 42, -39], [-35, -28, -28]] Output:
[ "[533, 7, 3, 1071, -47, -897, -35]" ]
task852-696e3fde77f34709b033f4a9435615f3
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 42, -33, -39, 41], [-17, -19, -2, 47], [-2, 15, 38, -40, -48]] Output:
[ "[52767, 15181, 15]" ]
task852-02505f07de6949fcb74a652839916687
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -38, -2, -14, 1], [13, 30, -18, 18], [-22, 29, 47], [-33, -5, -35, -24, 18], [-33, -44]] Output:
[ "[-45, 13, 1363, -5775, -33]" ]
task852-76b46de8552d428fa024ea65b6c3c8c4
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -47, -18, 50], [14, 22, -33], [8, -1, -11, -50], [-29, 31], [-30, -24, -30, 8, -22], [31, 46], [-28, 1, 28, 35], [22, 28], [15, -33], [46, -28, -47]] Output:
[ "[-47, -33, 11, -899, 0, 31, 35, 0, -495, -47]" ]
task852-b49426f4d8fb4e708413241f0f12da2c
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -14, 14], [-29, -38, -8], [17, 3, -1], [2, -20, 7], [41, 7, 42], [-32, -36]] Output:
[ "[0, -29, -51, 7, 287, 0]" ]
task852-57e30689045a407baf1009de57cfadce
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -15, -5], [-1, -39, 24, -21], [-16, -14, 45, 38], [1, 17, -3, 50]] Output:
[ "[75, -819, 45, -51]" ]
task852-ecc89b7a4afe465b8358350c5445f347
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 41, -32, -29], [35, 29, 5], [-35, -10, -38, 48], [24, 48, 3, -41, 38], [13, 36, -9, 40], [14, -26, 44], [-9, 27, -44], [-50, 1], [31, 1, 24, -12], [-50, -21, -34], [-28, 1], [-10, 2, 49], [-1, -6, -33, -24], [33, 2, 19, -1]] Output:
[ "[-1189, 5075, -35, -123, -117, 0, -243, 1, 31, -21, 1, 49, 33, -627]" ]
task852-7e6448ca988c421dbc68808c5d4c112e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 29], [-34, -22, 43, 40], [0, 1, 27, 47], [-8, 11, 5]] Output:
[ "[-261, 43, 1269, 55]" ]
task852-643afed9b4c640b097b804085dfd7a7a
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 42], [19, 30, -32], [38, 4, -15], [36, 7, 3, 13], [-8, 35, 25, -27], [-28, -6, 21], [-45, 11, 24], [45, -24, 5], [21, 2]] Output:
[ "[3, 19, -15, 273, -23625, 21, -495, 225, 21]" ]
task852-1121632fcad74a74ab549b2ddccfee3a
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 22, 2, -16, 15], [3, -39, -39], [17, 13, 4], [14, -44, 28, 46, -49], [-5, -5, -40], [-1, 0], [-38, 15, -20, 45], [39, 50], [18, 32, -22, -1], [14, -44, -26, 28, -19], [24, 43, -3, 28, -5]] Output:
[ "[15, 4563, 221, -49, 25, -1, 675, 39, -1, -19, 645]" ]
task852-b5b14931a1794f3abb27bc6258280224
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 5, 15, -43], [43, 12], [6, 34, 22], [45, -14, -39], [-3, -28, 39, 3, -3], [-31, -35], [25, -43, 48, 13], [9, -45, 48, -14, -32], [-41, -28, 36]] Output:
[ "[-3225, 43, 0, -1755, 1053, 1085, -13975, -405, -41]" ]
task852-b51e1661b95941d0bb50d01624d1fe6d
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -46], [46, -9, -10, -4], [29, 8], [33, 34, -14], [27, 5, 9, 32, 3], [23, 36, 41, 32, 21], [1, 50, 23], [49, -32], [-6, -24, -40], [29, 8], [27, 29], [-26, 49], [-11, 13, -6, 34, -7], [7, -33, 27]] Output:
[ "[31, -9, 29, 33, 3645, 19803, 23, 49, 0, 29, 783, 49, 1001, -6237]" ]
task852-1de24866d53c48aeab265a437889caa0
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -46, 3, -35], [-28, 34, 4, -22, 22], [50, -36], [-38, -13, 34, 21, -29], [42, -50]] Output:
[ "[-105, 0, 0, 7917, 0]" ]
task852-3338a759500246c8b144ebd37ee4d0f4
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -7, 40, -34], [47, 7, -16, -31, -35], [21, 41, -45], [40, 47], [-2, 47, -25, -13], [31, 10, 25, -17, 4], [44, -4, 1, -38], [5, 33, -38], [34, 50], [27, -47, -42, -38, -4], [-15, 46], [-5, 13, -22, -41]] Output:
[ "[-7, 356965, -38745, 47, 15275, -13175, 1, 165, 0, -1269, -15, 2665]" ]
task852-28d3cc9acbbe485f9a1a959bcf4186dc
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 13, 29], [-17, 45, 9, -11, 9], [-19, 31, -10], [-35, -40, -46, -25, 35], [-39, -38, 44, 40, 46], [10, -47, 19, 8, -6], [-21, -25, 19, -41, -34], [-41, 42, 17, -15], [20, -1], [-48, -38], [39, 35, 23, -44], [-24, 17, -27, 28, -36], [-6, -38, -27, -11, -30]] Output:
[ "[377, 681615, -589, 30625, -39, -893, -408975, 10455, -1, 0, 31395, -459, 297]" ]
task852-03248fbe382d4067810406416654b077
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 33, -29, 20, 32], [33, -18, 0, 18, -17], [18, 49, 36, -11], [4, -11, 24], [-32, 13, -5], [-45, 46, -31, 13]] Output:
[ "[46893, -561, -539, -11, -65, 18135]" ]
task852-5d88778eab534059a8682fa5caf6d850
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -40, 0, 41], [16, -7, -1, -43, 6], [-16, 44], [2, 11, -21], [31, -48, 37]] Output:
[ "[41, -301, 0, -231, 1147]" ]
task852-6deabf54b1da4277a72c7350d43f4277
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[35, -12, -2, 50], [-23, 13, -43, 32, 11], [27, 16, -9], [-19, -21, 33, 17], [26, 19], [-24, 37, 36], [5, -19], [-11, -8], [-36, 24, 35, -7, -47]] Output:
[ "[35, 141427, -243, 223839, 19, 37, -95, -11, 11515]" ]
task852-7167ad1a78c34df28d6be5adfe06b739
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 9], [27, 41, 26], [-38, -43, -10, 23, -17], [-33, 30, -33, 25, 28], [35, -10, -26, 16], [45, -9, 14], [13, 17], [7, 6], [33, 50, 36], [35, -32, -43], [6, -49, -6, 43, -30], [31, -19, -31, 18, 48]] Output:
[ "[9, 1107, 16813, 27225, 35, -405, 221, 7, 33, -1505, -2107, 18259]" ]
task852-c1cf1ad9daec4e52ad01919c490f199e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -39, 0, -41, -40], [-6, 9, 29, -30, -7], [30, -25], [34, 0, 46, -9, 5], [-27, 30], [-11, 3, -20, 30], [-15, -31], [-11, 37, 26, 27, -39], [41, -9, 16, 20], [18, 49, -6, -6]] Output:
[ "[1599, -1827, -25, -45, -27, -33, 465, 428571, -369, 49]" ]
task852-32191fc5a3e8493fbf368d00c1a1288e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 17, 17, -24, -23], [36, 19, -17, 48], [-8, -38, -49], [2, 6], [36, -32, -40, 16, -40], [44, 8, -16, 46], [-12, 32, 5, 47, 13]] Output:
[ "[-6647, -323, -49, 0, 0, 0, 3055]" ]
task852-27d7ff4f1c194d7ebb9e557ae8840932
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 25], [49, 0, 7], [8, 20], [-8, -15, -24, -17, 47], [-50, -2, 49], [22, -23, -2, -23, -25], [-14, -39, -42], [-7, 30, -46, 2], [19, -15, -35, 22, -50], [-6, 25], [15, 4, 7]] Output:
[ "[1075, 343, 0, 11985, 49, -13225, -39, -7, 9975, 25, 105]" ]
task852-abbb2baab63c45468970c656f42fdaed
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 27, 11], [-28, 27, 4], [-26, 47, 45, 10, 32], [1, 11, 10], [-11, 18, -21, 36], [-11, 47, 43], [34, 18, 43, -28, 12], [-17, -20, -11], [-13, -28, 44], [29, -40, 2, -6], [-37, -47, 16, -38], [0, -1, 6, -25, -46]] Output:
[ "[891, 27, 2115, 11, 231, -22231, 43, 187, -13, 29, 1739, 25]" ]
task852-40203f1ce28b428da357a067e6ffa0bb
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 43, -43, -11], [2, 28], [-32, 37, -48]] Output:
[ "[-467797, 0, 37]" ]
task852-cb5793bca74943968033dcd52ef4233c
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-6, 31, 17, -39], [37, 28, -2, -28], [38, 15, 14, 44], [-5, -37, -19, 47, 41], [24, -18, 47, -29], [33, -17], [30, 48], [5, 45, 48, -39, 42]] Output:
[ "[-20553, 37, 15, -6773405, -1363, -561, 0, -8775]" ]
task852-660e0fb037184afabf5bf6a1f4f153d5
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-46, 33, 9, -24, 49], [50, 14], [28, 16, -12, 0], [19, 26], [34, -41], [-21, -34, -40]] Output:
[ "[14553, 0, 0, 19, -41, -21]" ]
task852-847b94a03be24937845602fa2abd19e3
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[18, 0, 39, -34], [-13, 18, -37, 42, -18], [18, -23], [-2, 25], [4, -24, 43, -43, 39], [-39, -4, -14], [-44, -41, 20], [44, -8], [32, -45, -46], [-33, 25], [-45, -13, 29, -20], [25, -41, 20, 33, -27], [19, 1, -31, -28], [21, 48, 47]] Output:
[ "[39, 481, -23, 25, -72111, -39, -41, 0, -45, -825, 16965, 913275, -589, 987]" ]
task852-4d77259886924338aa3bf17b9f9e1c9e
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[46, 38, -5, 14, -47], [40, 27, -23], [-23, -42], [-7, -44], [-40, -8, -42, 32]] Output:
[ "[235, -621, -23, -7, 0]" ]
task852-95e9423ff74a42ff8617c3c876e69511
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -50, 31, 29], [45, -25, -42, -46], [-36, 41, 6, 0], [26, -5, -11], [26, 34, 3], [-32, 6], [22, -16, -20, -43], [-44, 45], [-19, -2, 49, -41]] Output:
[ "[899, -1125, 41, 55, 3, 0, -43, 45, 38171]" ]
task852-db9ebcee21b14bc0b9c1fda23a3f6ae2
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 31, -36, 40], [8, -50, 30, -31, 9], [-50, -17]] Output:
[ "[961, -279, -17]" ]
task852-040bb584ee564163b9ecc01933ad6f7c
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 48, -17, 22, -35], [-8, -16], [-47, -21], [31, 28]] Output:
[ "[19635, 0, 987, 31]" ]
task852-415d838f57514647a2947482349e463c
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -48, -47, -33, -34], [-31, -39, 21, -1, 9], [-21, -9, 33]] Output:
[ "[41877, -228501, 6237]" ]
task852-a75c8af81d684b76b3d88295869c4dd9
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-13, 12], [4, 39, -16, 40, -46], [-31, -25], [-40, -30], [-25, -19, -23], [47, -38, 50], [42, 38], [-34, -16, 31], [-34, 27, -1, 22], [24, 44, -8, -24], [-49, -19, -27, 50], [10, -37, -32], [-37, -12, 46]] Output:
[ "[-13, 39, 775, 0, -10925, 47, 0, 31, -27, 0, -25137, -37, -37]" ]
task852-b3fc0aa6837d4a4895a56d1e86333a20
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -41, 19, 13, -6], [17, -21, -44, -44], [1, -12, 23, 7], [48, -2, -9, 6, 43], [-16, 16], [-38, -25, 50, -4, 11], [3, 27, -1, 22], [-50, -23, -16]] Output:
[ "[-10127, -357, 161, -387, 0, -275, -81, -23]" ]
task852-549fb7dca3404be28c7d1778fa550050
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -31], [-17, -32, 5, 44, -14], [26, 25, -48, 19, 12], [-26, -5, 48, -49], [36, -11, 28, 0], [-36, 33, 2, -41], [24, 18, 20], [26, -24], [-14, -42, -32, -34, 26], [5, -30, 4, 23, 50], [-35, 27, 48, -13]] Output:
[ "[-1333, -85, 475, 245, -11, -1353, 0, 0, 0, 115, 12285]" ]
task852-22af207d8e3d4e459c81d93248794bb3
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -4, 40, 9, -26], [29, -13, 28, 42, 9], [-3, -26], [-22, -35, -10, 31], [13, 42, 22, -36, -12], [15, -22, 50, -34], [32, -34, 9, -26], [-25, -20, -30, 12], [-2, 37, 3], [-26, -37, -44], [-6, -31, 29, -25], [28, 28, -14, -15], [30, 6, -46], [24, -26, -15, -28, 40], [44, 6, 7]] Output:
[ "[9, -3393, -3, -1085, 13, 15, 9, -25, 111, -37, 22475, -15, 0, -15, 7]" ]
task852-d551e62728b1442d92dc43453470b4fb
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -7], [14, 48, -38, -6, -44], [20, 39, -42, 34, 48], [34, -2, -10, -9, 33], [-18, -33, 9], [1, -13, 32], [15, -28, -1], [-39, -42, 35, -13], [-29, -18, 3], [36, -3, -23, 27], [-5, 15]] Output:
[ "[-7, 0, 39, -297, -297, -13, -15, 17745, -87, 1863, -75]" ]
task852-55ae16230d1c4751a81c62f8561774d7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -40, -37, 20], [19, 33, -2, 31], [-17, 8], [7, -14, -48, -47], [-33, -5, 28, 16], [-44, -39], [-2, 30, 1, -17, -32], [1, -6, -18, -28, -32], [-25, 6], [-48, -4, 44, 49], [26, 19], [-3, -45, -6], [45, -8]] Output:
[ "[407, 19437, -17, -329, 165, -39, -17, 1, -25, 49, 19, 135, 45]" ]
task852-6c9e63799b1f4495b3ea6ad9a7b0c496
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 33], [17, 44, 24], [-44, -23, -22], [-39, 22, -10, -6, -11]] Output:
[ "[-231, 17, -23, 429]" ]
task852-7426f9e14fed4a83bb331a632aea6811
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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], [32, -27, -44, -3], [10, -38, -31, -22, 40]] Output:
[ "[0, 81, -31]" ]
task852-8d2e0cd023d0422d809b5a202c20eee7
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[18, 9, 14, -28], [-49, 19, -26], [-31, 44, 24, -22], [4, 49], [38, 43], [38, -10], [47, 17], [-49, -15], [1, -34, 29, -44], [-23, 49, -15, 45], [11, 11, 21], [0, 20], [11, 33, -25]] Output:
[ "[9, -931, -31, 49, 43, 0, 799, 735, 29, 760725, 2541, 0, -9075]" ]
task852-63ff5d5e4ac34283b618135f9bdbb037
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[34, -32], [-28, 3, 38, 3, 35], [-23, 36, 27], [-45, 16, 7, 31], [-7, -4], [49, 50, 31], [27, -11, -32], [23, 0], [-34, -27, -25, -46], [29, 38], [-9, -41, -48]] Output:
[ "[0, 315, -621, -9765, -7, 1519, -297, 23, 675, 29, 369]" ]
task852-0dc55157af9b40798ac8a19f7a74753b
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -26, -48], [48, -47], [-42, 28, -44], [36, 25, 7], [-16, 5], [39, -3, 8, 22, -28], [22, -36, 19, -21], [-23, -25, 37, -32], [27, 14], [-3, -9, -12, -9, -13], [-32, -35, 32, 12]] Output:
[ "[-37, -47, 0, 175, 5, -117, -399, 21275, 27, 3159, -35]" ]
task852-506005e280774fb98144dd647ccac742
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[46, 39, 12], [-49, 21, 1, -32], [4, -12], [48, -21], [-23, 11, -1, 49], [-23, 8, -4, 1], [-41, -7], [-32, 13, -50, 39], [-9, -29, -42]] Output:
[ "[39, -1029, 0, -21, 12397, -23, 287, 507, 261]" ]
task852-0c361895cc0f4c1fa4b2c0bc8b48f6fd
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 20, -29, 48, 49], [-8, 46, -14], [-1, -44, 39, 35, -23], [16, -45], [16, 22, 40], [50, -13, 13, 29], [-31, -12], [43, -39], [-20, -49, -17, 10], [24, -27, -31], [-33, -20, -21, 49, -33], [-16, 32], [11, 49, -17, -38, -31], [13, 5], [27, 31]] Output:
[ "[44051, 0, 31395, -45, 0, -4901, -31, -1677, 833, 837, -1120581, 0, 284053, 65, 837]" ]
task852-e2e84f1204014d0b89450961e9359216
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[46, 36, -46], [-17, 27, -44, 22, 42], [-13, 44, -13], [-2, -17], [43, -39, 12], [0, 28, 9, -8, -39], [-49, -1], [35, -7, 40], [-13, 4, 8, 49, 7]] Output:
[ "[0, -459, 169, -17, -1677, -351, 49, -245, -4459]" ]
task852-a9f36cda8ac342e1869a25237add7a76
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -44, 12, 43], [10, -42], [22, -11, 22], [-26, -3, -1], [-8, 36, -45], [-25, 17, 16, -19, -50], [-32, 49, 43], [-39, -2], [-25, -43], [30, 31, 24], [-40, 34], [0, 39, 34, 3], [-13, -17, -9], [-37, -46, 7, -25, 1], [42, -20, -50, 28]] Output:
[ "[43, 0, -11, 3, -45, 8075, 2107, -39, 1075, 31, 0, 117, -1989, 6475, 0]" ]
task852-112e97537faa4240a8523a8bcad599db
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -24, -39, 33, 13], [-1, 10, 44, -2], [27, 25], [3, 29], [-9, 37, 10], [22, -37, -18, -34, 43], [-44, 40, -28, -17], [-28, 24, -36], [-39, 28, -7, 36, 22], [37, -38, 5, 33]] Output:
[ "[-485199, -1, 675, 87, -333, -1591, -17, 0, 273, 6105]" ]
task852-883c974003634c3d819e8195b5e2fbbb
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-4, -24, 6, 5, -6], [1, -5, 28], [25, 30, -8], [-30, 23, -29], [13, -1], [34, 42, -25, -39, 44], [10, 40, 22, 50, 17], [-36, -43]] Output:
[ "[5, -5, 25, -667, -13, 975, 17, -43]" ]
task852-c9c14cc23985497db0f1ba2211779745
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[-46, 22, 19, 37], [-13, 9, -17, -7, -46], [-35, -46, -45, -16], [49, 20, -6, -38, 40], [37, -8], [3, -38], [1, -34, 0], [46, 32, -28, 16, -18], [9, 31, -16], [-21, 36], [28, -17, -8, 12], [5, 3]] Output:
[ "[703, -13923, 1575, 49, 37, 3, 1, 0, 279, -21, -17, 15]" ]
task852-1c1143b412c7430a99143de2b9770848
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -12, 45], [1, 7], [17, -49, -21], [25, -44, 23, -5, 41], [-4, -1, -8], [29, -15], [8, 19, 0], [43, -49, 44], [41, -26, -41], [-4, -40, 45]] Output:
[ "[-2205, 7, 17493, -117875, -1, -435, 19, -2107, -1681, 45]" ]
task852-7d7c36f891b64530823a6c5a0987d2bc
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 43, 27, 32, -12], [-6, 35], [25, -32, -47]] Output:
[ "[1161, 35, -1175]" ]
task852-0ac8d62904254a47b01eb5995ad64e7d
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 2, -9, -34], [-7, 32, 38, 10, 20], [20, 1, 37], [50, -29, 44, -24, -13], [49, -29, 1, 20], [-13, 9, 24, -41], [28, -28, 40], [-42, -33, 9], [-1, 44, 27], [29, 24, -50, -7, -6], [-40, 35, -10, -13, -45], [44, 15, -47], [-9, -26]] Output:
[ "[297, -7, 37, 377, -1421, 4797, 0, -297, -27, -203, 20475, -705, -9]" ]
task852-1a271a5269a34352be5b5ecfc94f3235
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - Input: [[0, -12, 7, 6], [-8, 0, -7, 11], [6, -2, 9, 0, 7]] Output: [0, 0, 0] Now complete the following example - Input: [[6, -14, 35], [28, -26, 38, -1], [-35, 8, 32, -39, 33], [-1, 23], [-15, -8], [30, -19, 22, 42, 33], [-44, 24, 43, 37], [-2, -13, -28, -5, 20], [33, 43], [-27, -50, -46, 21, -30], [-36, 11, -8, -15], [29, -16, 29, -13], [-22, -20, 28, -8], [16, 46, -41], [41, 9, -9, -18, -43]] Output:
[ "[35, -1, 45045, -23, -15, -627, 1591, 65, 1419, -567, -165, -10933, 0, -41, 142803]" ]
task852-ee9d61bf663544b5852a5abb1521b6ab
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -1], [45, -24, 21, -43], [-31, 2], [-40, 50], [-22, 41, 35], [19, 41], [-25, -19, 35, -6], [-26, 39, -45], [-38, -43, -1]] Output:
[ "[-47, -40635, -31, 0, 1435, 779, 16625, -1755, 43]" ]
task852-59bc1418eb924bc899692e4b2f951051
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -15, 5], [33, 41, 5], [28, 30], [46, 4], [24, 20, 13, 21, 6], [-44, -6, 5, -30, 13], [-9, 31, 35, 23, -4], [16, 9, -36, 49, -11], [0, -13, -33, -24, -18]] Output:
[ "[-75, 6765, 0, 0, 273, 65, -224595, -4851, 429]" ]
task852-13268d2fc74d4b2da59eff714f167247
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, -48, -8, 2], [32, -14], [21, 34, -23], [-44, 44, 41, 23], [33, 39], [11, -26, -16, 4], [26, 33, -3, -2], [-24, -42, -34], [32, -18, 33], [-14, -16, 8, -42], [-24, 13, -14, -44], [2, 3, 49]] Output:
[ "[-13, 0, -483, 943, 1287, 11, -99, 0, 33, 0, 13, 147]" ]
task852-aa04eee92edd4801a46c154df291fd67
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 27, 16], [6, 30, -8], [46, 22, -39, -26, -27], [-24, -22, -1, 24], [50, -41], [17, -16, -24, 1], [-27, 16, 44], [-5, -48, 15, 44, 28], [-48, 30]] Output:
[ "[1269, 0, 1053, -1, -41, 17, -27, -75, 0]" ]
task852-e6d870fdcb1c4735af84bd8c89e38210
Definition: In this task you will be given a list, of lists, of integers. For every inner list contained in the input list, you should multiply every odd number in that list. The output should be a list of integers with the same length as the number of lists in the input list. If there are no odd numbers in an inner list you should output 0 for that list. Positive Example 1 - Input: [[4, 4, 12, -6], [-9, 5, -6, -1], [8, 3, 9, -5, 1]] Output: [0, 45, -135] Positive Example 2 - Input: [[-7, 8, 0], [3, 0, 11], [9, -7, 5, 0]]' Output: [-7, 33, -315] Negative Example 1 - Input: [[2, 5, 3, 1, 8], [-2, -7, 6], [0, 5, 2, 9, -3], [4, 8, -2]] Output: [[15], [-7], [-135], [0]] Negative Example 2 - 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, 18, -37, 33, 40], [-42, -25, 13, -24, 31], [-38, 8], [22, -16], [14, 3, 25, 33, 32], [-41, -29, -20, -47], [-22, 28, 48, 38], [19, 31, -2, -5, -36], [-22, -14], [-25, 46, -17, 25, 11]] Output:
[ "[-28083, -10075, 0, 0, 2475, -55883, 0, -2945, 0, 116875]" ]
task852-3dfcfd3daaad40c2a5654b949975aff7