input
stringlengths
735
1.01k
output
sequencelengths
1
1
id
stringlengths
40
40
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[12, -143, -153, -19, -136, -106], [-160, 34, 58, -113, -177], [64, -57], [-11, -183], [-193, -145, 81, 86, -177, -102, -41], [-147, -34, -60, 33, -135], [-74, 41], [-44, 96, -11, -155, 72, -21, 9]] Output:
[ "[12, 58, 64, -11, 86, 33, 41, 96]" ]
task207-207bd4c0da934e598457e4d1f45b5afb
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-101, -154, -18, 52, -131], [-42, 98, 93, -91, -156]] Output:
[ "[52, 98]" ]
task207-f20fba781abf4e87815acff92fb69c24
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[85, -80], [-104, 89, -63, 87, 95, -97, 81], [67, -199, -87, -56], [-146, 100, 35, 52], [19, -147, 100, 46, -142], [-32, -149, 50], [-55, 5, -51]] Output:
[ "[85, 95, 67, 100, 100, 50, 5]" ]
task207-3cd4fc77c6db4a5a8b5d12c55ffcb5f7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-124, 36, 71, -43, 30, 100], [-168, 43]] Output:
[ "[100, 43]" ]
task207-d6c0097b099547bcad591daa410942e6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[84, -23, 41, 9, -69, -180, -68], [-90, -63], [-51, -24, -148, -10, 27], [44, -113, 66, -155, -80, -179, -173], [39, 78, 32], [25, 34], [79, 65, 17, 10, 11, -94, -69], [-1, -16, 14, -151, -176, -8, -27]] Output:
[ "[84, -63, 27, 66, 78, 34, 79, 14]" ]
task207-e732dc4dfc9a40f0b3a70f9ecd22fc11
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[88, -158, -30, 2], [-6, 3, -116, 87, 87, 30, 39], [-182, 95, -133, -200, 29, 81], [-173, -112, -52, -113, -48], [48, -164], [30, -113], [58, -18, 53, -126, -124]] Output:
[ "[88, 87, 95, -48, 48, 30, 58]" ]
task207-f81b8c93f1df4ea39a667cce09c49e80
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[12, 75, -66, 16, 68, -167], [-61, 8, -85, 13, -173, -175, -10], [-171, -107, -118, -147, -138, -139, -22], [-37, -173, -64, 98, 31], [59, -122, 32, -46, 97], [-44, 49, 29, 93, 57, -105, -120], [-104, -102, -153, -154, 75, -155], [-46, -85, -126, -3, 92, 32, 9], [-169, -121, -86, -7]] Output:
[ "[75, 13, -22, 98, 97, 93, 75, 92, -7]" ]
task207-0cdfb45f14d34a2fa1f653a005ee8e8f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-68, -3, -153, -42, 89, 45], [-108, -152, 76, 37, 30], [-198, 61, -97, 85, 31, -41], [-21, -156], [-147, -8, -59, -53, 31, 49]] Output:
[ "[89, 76, 85, -21, 49]" ]
task207-5c2cf2dbb6084ca59cae0c59f639b6f2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-177, 63, -125], [-49, 99, 39, -20], [44, -55, 40, -200], [-182, 54, -82], [23, -55]] Output:
[ "[63, 99, 44, 54, 23]" ]
task207-1ab3a79a77b444ed8edaa2455ace4a97
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-200, 44, 64, 40, -48, -112], [32, -189, -180, -45], [-171, -163, -174, -180, -179], [-63, -150, -145, 100, -172, 97, 19], [36, -32, -98, -51, 27, -89], [-60, -153, 53, -174, -8]] Output:
[ "[64, 32, -163, 100, 36, 53]" ]
task207-8b5ed480912c49eeb275cdef81d56257
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[74, 75, 0], [-104, -122, 55, 84, -28], [-86, 96, -171, -9, -55, -123, 2], [-97, -137, 0, 41, -117], [18, -68]] Output:
[ "[75, 84, 96, 41, 18]" ]
task207-c9d80a56b7d24a87ac8bfc8bf562bdaa
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-47, -181, -10, -103], [-126, -160, -187]] Output:
[ "[-10, -126]" ]
task207-4a8faf4ce35b49c4865af406b6945006
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-92, 66], [-124, -75, -170, -17, 20, -164]] Output:
[ "[66, 20]" ]
task207-0830f13ed32c4ab28ef31ef0d298107f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-181, -182, 39, -7, -73, -2], [78, -136, -193, -95]] Output:
[ "[39, 78]" ]
task207-94170411a6444effb80bd90b53fa5731
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-194, -124, -172, 49, -54, 7, -10], [-78, 30], [38, -78], [-183, -104, 8, -63, -136, -179, 44]] Output:
[ "[49, 30, 38, 44]" ]
task207-4dd2e0c005934f2f8f40a5eee40486e9
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[77, -129, -165, -23, -25, 84], [-148, -184, -130, -48, 66], [12, -10, -184, -198, -76], [-15, -102, 62, 49], [32, -91]] Output:
[ "[84, 66, 12, 62, 32]" ]
task207-9e382d7a917e42d5889090933f04687a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-7, -38, -173, 89], [90, -49, -69, -83, -99], [-100, -35, -104, -122, -66, 7, 99], [-135, -55, -40, -37, 69, -119, -62], [71, 70, 53, 58, 11]] Output:
[ "[89, 90, 99, 69, 71]" ]
task207-c512679450074d2fbef7edc5275eacb7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[51, 98, 94, -158, -69, 48], [11, 72, 53], [-192, -79, 77, 65, -65, -145, -135], [-23, -109], [85, -102, -182, -81, -26, -197], [80, -62, -169, -10], [0, -2, 19, -196, 2], [-124, -12, 24, -99, 9, -48, 87], [-77, -195, -32, -57, 74, 31, 30]] Output:
[ "[98, 72, 77, -23, 85, 80, 19, 87, 74]" ]
task207-705109b5332244d0911718078c837cd3
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-16, -47, 60, -76, 49, -150], [-194, -22, 42], [-180, -127, -120, -192, -170, -57, -117], [-62, 95], [-145, -108, -62], [54, -121, -172, -11, 47]] Output:
[ "[60, 42, -57, 95, -62, 54]" ]
task207-60222b4e46c24a95ab891008720138cb
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[97, -182, -63, -148, -123, -20, 9], [-167, 39, -163, -90, -123, -90]] Output:
[ "[97, 39]" ]
task207-6375ae48ed3e4f1a8f59c0c70fd4dfd7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-55, 47, -2, -189, 56, -79, -20], [-87, -199, -122, -151, -6, -19], [88, -94, 54, -40, -76, -135, -69], [-95, -140, 64, -192, -185, 43], [-109, 94, -55, -187, -93, -66, -158]] Output:
[ "[56, -6, 88, 64, 94]" ]
task207-1dbedb620eb540aa8c7ee81414ceb455
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[44, -57, -191], [-119, -104, -154, -116, -179]] Output:
[ "[44, -104]" ]
task207-241abf16081b4ddbbf298682556c4fa2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-91, -90, -192, -157], [10, -125, -123]] Output:
[ "[-90, 10]" ]
task207-5a88f1355be14f8db3ac1c60ff7b9b4f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-108, 43, -114, -189, -142], [-186, 44, -158, -46, 34], [-41, -45], [-92, -137, -1], [31, -92, -14], [-152, 59], [57, 10]] Output:
[ "[43, 44, -41, -1, 31, 59, 57]" ]
task207-e7e7d36d88c241769811ab854bc422f6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-132, 53, -122, -197], [-68, -167, -171, -145, -191, -168, -75], [-103, -139, -39, -54, -13], [-168, -138, 46, 20], [-147, 2], [34, -28, -59, 7, -143, -152], [3, 61, 25], [69, 0]] Output:
[ "[53, -68, -13, 46, 2, 34, 61, 69]" ]
task207-e9878a903c4a454794c64b547e361abc
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[41, 8], [-77, 71, 85]] Output:
[ "[41, 85]" ]
task207-098385a631c44c2ea2440774dc47949b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-180, -104, -150, -189], [8, -191, -95, -25, 59, 86], [-71, 94, -39, -146, -59, -103, 70], [-75, 35, -70], [66, 69, 96, -134, 5, -55, 69], [30, 90, -122, -137, -112, -114, -103], [-69, -173, -31, 11, -187], [52, -117, 89, -169, 59, -150], [-76, 78, -71]] Output:
[ "[-104, 86, 94, 35, 96, 90, 11, 89, 78]" ]
task207-67818c4f615140c3885a9eebb012c67d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[68, 54, -143, -64], [-110, -125, -46, -63, 65, -136, 67], [-119, -162], [-28, -159], [-160, 49, -180, 85, -199, -162], [27, -116, -82, -161, 92], [36, -66], [-80, -142, -109, -9, -158]] Output:
[ "[68, 67, -119, -28, 85, 92, 36, -9]" ]
task207-d544e57b13064c9891becc7c0f96a5b5
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[14, -86, 26, -114, 51, -10, -44], [-179, -97, -100, 92, 12, -131], [80, -9, 12, -100, -187, -7], [-130, -185, 22, 57]] Output:
[ "[51, 92, 80, 57]" ]
task207-5c96ea46a39b4b1e9bbad8ef9720deb6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-169, -24, -162, 67], [-82, 1, -188], [-177, -114, -40], [83, 46, -79, -170, -13, -68, -152], [-106, -119, -69], [37, -189, -110, -171, -63, -18]] Output:
[ "[67, 1, -40, 83, -69, 37]" ]
task207-456040878ce84e53bed57540a738b4f6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-72, -105, 54, -109], [4, -37, -115, 48, 14, 72], [-63, -93, -32, -3], [68, 3, -32, -105, -102, -101], [41, -58, -156, 54, 64, -166, 0], [14, 63]] Output:
[ "[54, 72, -3, 68, 64, 63]" ]
task207-ac3e2675423e42c786cd41853177b95b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-113, -107], [58, -145], [58, 75, -174, -51], [-115, 20, 81, -90, 74], [-5, 61, -56, -145], [23, 2, -102, -22], [-92, 11, 99, 84, 79, -156, -138]] Output:
[ "[-107, 58, 75, 81, 61, 23, 99]" ]
task207-c61d8809665d47a7a2b1e0e67a0e70bf
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-197, -167, -189], [-161, 52], [-9, -165, -72, -109, -190, 6, -30], [-146, -181, 1, -50, -153, -108, -140], [-48, 45, -191, 67], [-128, -79]] Output:
[ "[-167, 52, 6, 1, 67, -79]" ]
task207-f53a5b9969604881ad9ba5a91d9cd52f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[33, -8, -177, -18, -131, 54, -80], [-176, 50, 4, -169, -21, 100, -6], [74, 54, -191, -172, -127, 41], [58, -34, 65, -58, -66, -16, 90], [-151, -199, -36, -102, 39], [34, -42, 61, -36], [-162, 73, -107], [-150, -4, 38], [-47, 82, -71, 91, 56, -20, -13]] Output:
[ "[54, 100, 74, 90, 39, 61, 73, 38, 91]" ]
task207-a04454da3d054578b10452dc3713b012
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-123, -64, -37, -55], [-170, -193, 73, 94], [-21, -159, -100], [-59, -193, -156, 76], [21, -147, -140, -165, 85, -14], [-51, 57, 85, 1, -69, 93], [-156, -17, 72], [-48, -165, -96, -148, 5, -147], [-81, -55, 87, -12, -9]] Output:
[ "[-37, 94, -21, 76, 85, 93, 72, 5, 87]" ]
task207-df75b6d92ca34fe39b6c0c7d39050708
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[15, 99], [1, -154], [-57, -131, 16, -66, -17, -102, -159], [-106, -170, -134, -142, -1, 19], [-103, -119, -123, -127, 62]] Output:
[ "[99, 1, 16, 19, 62]" ]
task207-8890e37b0633421d8713f1065cf56acf
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-105, 60, -65, -97, -76, 48, -51], [-92, -158, -180, 81, -91, 94], [24, -41, -94, -179], [45, 77], [-87, 79], [60, 21], [-4, -34, 77, -185, -87], [47, 61, -45, 34, -104]] Output:
[ "[60, 94, 24, 77, 79, 60, 77, 61]" ]
task207-015f8fcc0eb548c7b2d0035be14e0369
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-38, -99, -185, -90], [87, -171], [-142, -165, 60, -53, 49, 50], [-40, -51, -1, -108, -126], [100, 33]] Output:
[ "[-38, 87, 60, -1, 100]" ]
task207-5dba10370bee447bbf10e6db9c212674
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[81, -112, 83, -92, -76, -169], [-181, -93, -42, 34], [-52, -191, -116], [-70, -141, -148, -192, -101, -104, -78], [-55, -196, -194, -82], [-8, -71, 37, -134, 44, -190, -102]] Output:
[ "[83, 34, -52, -70, -55, 44]" ]
task207-1f10e2e6b7de43219f8b389c3e261308
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-50, -12, -80, -46, -80, -82], [-76, -3, -125, -152, 80, -192, -138], [28, -200, -118]] Output:
[ "[-12, 80, 28]" ]
task207-a03a1a6e86f74fb78db1765c574681bf
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-135, -127, 97, -64], [-165, -173, -91], [99, -156, -116, -69, -50, -54, -53]] Output:
[ "[97, -91, 99]" ]
task207-213ee890b8ea4f1aa6da8ca91baaca04
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-50, -18, -145, -32, -29], [4, -178, 66, -22], [63, 23, -65, -107, -132, -149, 2], [-71, 34, 66, 52, 3], [-19, 58, 40, -106, 54, 42], [-70, -143, -194, -142, 10], [75, -106, 79, 49, 50]] Output:
[ "[-18, 66, 63, 66, 58, 10, 79]" ]
task207-8743bc23031d48938c585d5d65ac6727
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-190, -52, 53, -170, -22, -81], [-80, -136], [-48, -102, -112, -164, -60], [67, -41, -140, -55, -143], [-141, -159, 98, 76, -41], [40, -65, -84]] Output:
[ "[53, -80, -48, 67, 98, 40]" ]
task207-73410d76c0a94658b0cd2c2ffaf7e283
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-160, -130, -189, -108, -65], [-146, 43, 87, -138, -94, 53, -10], [-187, 67, 68, 20, -162, -91, -36]] Output:
[ "[-65, 87, 68]" ]
task207-78fed0ead5ea411da8da3ef67125b78f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-65, -96, 60], [94, -38, -170, -147, 74], [-23, 34, -66, 8, 44], [-147, -63, 28, -128, -175], [-79, 19], [54, -5], [-143, -168, -124], [14, -173, 36, 80, 18, 40, 98], [98, -109, -30, -169, -45, 91, -110]] Output:
[ "[60, 94, 44, 28, 19, 54, -124, 98, 98]" ]
task207-7f558979333b46ac9b9172365d138f84
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-1, -71, 84], [-81, -200, -9, -85], [27, -86, 77], [-148, 15, -134, -19, -75, -69], [-170, -123, -68, -75, 46, -190], [-52, -186, 48], [39, 5, -93], [-154, 7, -28, -13, 97, -172, -144], [-76, -104, -17]] Output:
[ "[84, -9, 77, 15, 46, 48, 39, 97, -17]" ]
task207-19bb85169e104ca6bf654986f3affe8d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[64, -19, -145, 94, -8, 61], [34, -4], [-93, -49, 17, 28], [-153, 35, -194, -87, -47, -80, 15], [-33, -51, -62], [-68, -180, 29, -45, -89, -141]] Output:
[ "[94, 34, 28, 35, -33, 29]" ]
task207-595f4cbed49a4527b25a286848111bcc
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[74, 21, 91, 83], [-178, 100, -81, -59, -88, -69], [64, -33, 58, -182, -31, 29], [-189, 36, 5, -58], [5, 53, -73, -70], [-158, 40]] Output:
[ "[91, 100, 64, 36, 53, 40]" ]
task207-3af8ce28fcb44838a24ebf6e76c66094
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-54, 91], [-26, 8, -108, -7, 35, -38, -193], [-47, 43, -12, -125], [-188, -26]] Output:
[ "[91, 35, 43, -26]" ]
task207-01126a0a85e14eacbc789df84d4b8cb9
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-142, -47, -88, 81, -182], [24, -158, -60, -72, -97, -59], [-182, -125, -146, -142, -69, -149, -107], [67, -97, -3, -150, -147]] Output:
[ "[81, 24, -69, 67]" ]
task207-96a8448f95274d66822200552b11a70d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-129, 49, 63], [57, -92, 0, -186, -74], [-38, -133, -92, -124, 73, -70, 75], [-113, 70, -87, -101, -154, -163, -30], [18, -52], [-170, -50, -196, -35, -135, -18]] Output:
[ "[63, 57, 75, 70, 18, -18]" ]
task207-b4fd662d944e472d86c97e30b447d044
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[68, -131, -177, -46], [-158, -23, 11, -92, -143, -55], [82, 71, -77], [-13, -42], [-179, 15, -172, 20, -29, 36, -66], [-68, 25, -17]] Output:
[ "[68, 11, 82, -13, 36, 25]" ]
task207-927315405fb44076bdd334bf053fab10
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[29, -197, -93, -91], [-10, 69], [-57, -11], [-68, -129, 58, -40, -77, -66, -164], [6, 17, -1], [53, -21, 50], [-2, -166, 32, -59, 60]] Output:
[ "[29, 69, -11, 58, 17, 53, 60]" ]
task207-3c07367395094719b7734bfc5b74ad92
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-185, -51, -121, -184, -1, -96, -147], [-182, 39, 2, -186, -171, -44], [-90, 56, 87, 13, -58, -93], [-57, -90, -121, -73, -160, 70], [-113, -89, -20], [-194, -45, -56, -153]] Output:
[ "[-1, 39, 87, 70, -20, -45]" ]
task207-f4839a77080a4965972252f69951838d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-15, 9, -181, -172, -74], [-164, -77, 1, -65, 29, -113, -163], [-189, -106, 22, -40, -50, -48], [-77, -61, 16, 85, 36, -45, -26], [2, 77, -77], [-146, -87, 75, -163, -147]] Output:
[ "[9, 29, 22, 85, 77, 75]" ]
task207-11a053bc609740bcb4ecbdb8e6c25777
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-48, -161, -102, -47, -41, -61], [-98, -14]] Output:
[ "[-41, -14]" ]
task207-dd86f424061c43ce9afcec4b2344a2f9
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[28, 76, -144, -69, -45, 31, -179], [71, -15, 69, -58, -56]] Output:
[ "[76, 71]" ]
task207-46f24ee4b9bf43e3b0a33d6be355aa7d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-183, -4, -104, -79, -26, -200], [-80, 13, -131, 15, -122, -181, -132], [-40, -102, -178, -86, -172], [98, -135, -71, -3], [-96, -32, -20, -151, -96, 7], [-9, -194], [-121, -168, 72, 14, -88, 98], [-135, -173, -110]] Output:
[ "[-4, 15, -40, 98, 7, -9, 98, -110]" ]
task207-12e1dadcfb8b43d589596f3a1f977057
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-60, 60, -104], [-50, -83, -64, 86], [26, -131, -100, 29, -111], [10, -15], [-48, -133, 3, 1, -154, -118, 45], [50, 77, -59, -9, -125, 55], [60, 65, -1], [-122, -75, -131, 87, -195, 66, -11], [22, -89]] Output:
[ "[60, 86, 29, 10, 45, 77, 65, 87, 22]" ]
task207-a9b531f195b14713847f7f85c683a629
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-5, 57], [87, -24, -155, 0], [59, -16, -146, -75, -49, 98, 76], [-52, 75, -96], [38, 98, -153], [-170, -81, -33, 63], [-140, 36, -174, -179, -134, -54, 47], [-103, -47, -2, 72, -133, -87]] Output:
[ "[57, 87, 98, 75, 98, 63, 47, 72]" ]
task207-bcf815d73fe74d6db4fbaa4f273cf20b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-84, -170, 56], [0, -57, -160, -28, -137, 43, -117], [-54, -61], [-198, 96, 26, -100], [-164, -134, -181, -91, -193, -82, 19]] Output:
[ "[56, 43, -54, 96, 19]" ]
task207-658e6caf9e7147ec91e9337953849cb6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[47, -39], [-79, -138, -157, 45, -103, -45, 1]] Output:
[ "[47, 45]" ]
task207-bd7e912ab2634580b7e44860cee0de7b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[25, -166, -161], [-15, 78, -116, -58, -32, -121], [-22, -99], [6, -59, 38, -109, -15, 97], [-125, 81, 86, 18, -173], [-113, 41, -108, 14, -117]] Output:
[ "[25, 78, -22, 97, 86, 41]" ]
task207-af8ba761f6e14da8ad0ee28047fbf987
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-172, -127, -149, 62, -126, 31, -152], [21, 71, 13, -98, -191], [-153, -25, -106, -181], [24, -105, 44], [-192, -126, -89, 10, -98, -51, 13], [-43, -168, -155, -50, -107, -95, 56]] Output:
[ "[62, 71, -25, 44, 13, 56]" ]
task207-212bf0b9d15942bfbceb7ecc5f359838
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-70, -109], [-45, 18, -30, -171, -192], [-175, -162, 98, 22], [52, -141, -45, -158], [-46, -173, -35], [67, 84, 77], [-165, 83, 13], [-180, 75], [-36, 14]] Output:
[ "[-70, 18, 98, 52, -35, 84, 83, 75, 14]" ]
task207-8adffc66ecad45c089cc56d2d022475b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[86, -66, -197], [36, -24, -18, -93, 71, -32, -30], [88, -111, -98, -44, 63], [-49, -91, -2, 16, -29, -116], [-69, 4, -184], [-107, -145], [34, -185, -117, -160, 16, -110], [82, -104, -92]] Output:
[ "[86, 71, 88, 16, 4, -107, 34, 82]" ]
task207-92741c71b7614460aebfe2e7a5e7e09e
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-43, -132], [-19, 96, -88, -86, -39], [-58, -168], [-14, -9, -81, -146], [-114, -177, -130, 81, -128, -118, -161]] Output:
[ "[-43, 96, -58, -9, 81]" ]
task207-6fe532e0092b40629f1b972cbab0cd8d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-111, -6], [-98, -156, 29, -181], [-62, -150, -89, 9, -140], [-12, 42, -24, -192], [71, -172, 26, -114, 83, 66, -183], [11, 100, 94, -155, 72], [-98, -131, -98, 69, -177, -90, -182], [-156, -199, -137, -29, -2, -194, -151]] Output:
[ "[-6, 29, 9, 42, 83, 100, 69, -2]" ]
task207-f69fcafa3d44404f8f8f802ea2d96ec1
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-119, -188, -149, 1, 32], [-64, 79, -184, 14], [-62, -176, 90], [-153, -36, -50, 64], [-21, -166, 1, 37, 90], [-76, -30, -190, -174, 23, 90]] Output:
[ "[32, 79, 90, 64, 90, 90]" ]
task207-84bd622c9d3944fe87148068dafdb512
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-104, -35, -12], [-145, -148], [-126, 77, 32, 47, -67, 44, -109], [-113, -114, 39, 1], [-51, -178, 4, -104], [93, -159], [10, -76, -4, -69, -147, -179, -85], [-43, -69, 36, -2, -72, 53, -136], [-85, -40, -120, -20, -12, 90]] Output:
[ "[-12, -145, 77, 39, 4, 93, 10, 53, 90]" ]
task207-d5d01ea7584b46ecbe39b948d61437fe
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-151, -194], [-174, 80, 60], [-84, 65, -199]] Output:
[ "[-151, 80, 65]" ]
task207-2d8239208015470f903d7d1b329f74b4
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-65, -132, -105, 40, 32, 84], [-53, -33]] Output:
[ "[84, -33]" ]
task207-082d8f2249714d989e375741559a7403
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-75, 62, -123, -84, -182, -89, -65], [-21, -26, -152], [-55, -22, 79, -94, 73], [19, -107, -198, -62, -109], [53, -72, -43, -134], [49, -54]] Output:
[ "[62, -21, 79, 19, 53, 49]" ]
task207-68733ca75e1349f2bc0735a379220622
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[89, -186, 57, -40], [27, 68], [-166, -166, -48, 70, 78, 99, -52], [-194, 84, -72], [-171, 65, 100, -135, -42, -114, -199]] Output:
[ "[89, 68, 99, 84, 100]" ]
task207-36a111adb18048699a9008518c9c89fb
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[56, -182, -132], [-179, -50], [-7, -92, -21, 55, -118], [41, 33], [-170, 6, 71, -30], [41, -66, 20, -120, -192, 38]] Output:
[ "[56, -50, 55, 41, 71, 41]" ]
task207-efc50d0b4e634fc78a051ee6f99946d6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-9, 24, -199], [-89, -26], [96, 49], [-92, 57, -171, -179], [-28, -90, -46, -189], [-168, -172, 58, -88, 92], [-180, 89, -161], [-179, 60, 72, -33]] Output:
[ "[24, -26, 96, 57, -28, 92, 89, 72]" ]
task207-9f33fe7829c643639cab9e03fcf69b14
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-142, -195], [-162, 56, -70, -155, -45, -168]] Output:
[ "[-142, 56]" ]
task207-08e6d1a58df946dbb3402c6c845d14ae
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-32, -102, -177], [-105, 48, -163, -8, 64, -16, 3], [-124, 94]] Output:
[ "[-32, 64, 94]" ]
task207-87df9b65014c44ccb0928faa67bdb2d2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-122, -128, -184, -60, -9], [-28, -64, -3, -52, 2, 42, 47], [32, -52, 42, 56, -3, -72], [-130, 40, -159, -180, -20]] Output:
[ "[-9, 47, 56, 40]" ]
task207-42c4132c31524c05a506f4cc7ace4cd2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-1, 89, 17, -104, 79, -189], [-189, -107, -69, -105, -113], [-167, 29, -146], [-187, -171], [-41, -137, -165]] Output:
[ "[89, -69, 29, -171, -41]" ]
task207-a5c3427a603c4af9b76a90ba8ddb1827
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-60, 67, -76, 15], [-150, -158, 71, 20, 69, -58, 50], [-191, -86], [-94, -133, -76], [-35, -115, 56, -181, 66, -173], [-128, -93, 22, -94, 53, 19]] Output:
[ "[67, 71, -86, -76, 66, 53]" ]
task207-7ce0f97f2e364207ba53265072c1410f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-147, 89], [90, -167, -61], [-110, -24, -106, -50, -89], [-180, 67, -200, 99, -149, 36], [-72, -35, 37, 56, -172, 63, -102]] Output:
[ "[89, 90, -24, 99, 63]" ]
task207-de9b1a43ebb4407c8528d71ff0adf15d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-20, 75, 87, 24, 49, 99, 86], [81, 30], [-67, -51, -172, -167, -146, 92], [-38, 1, -167, 99, -38]] Output:
[ "[99, 81, 92, 99]" ]
task207-5d945d070b5945a8a2e775312b81d891
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[74, -143, -151, -188, 19], [-188, 57, 26, -66, -177, 13], [-175, -40, -99, -50, -167], [-14, -119, 41, -174, 88, 10, -115], [-154, -22, -44, -61, 37], [-62, 89], [-109, -37, -129, 28, -34, -12]] Output:
[ "[74, 57, -40, 88, 37, 89, 28]" ]
task207-5f707618836a4100ab0e73aff2c84e0a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-154, -33, 71, 5], [-78, -51, -69], [-149, -177, -128], [-90, -143], [-36, 11, -192], [-123, -158, -86, -171, -170, -106], [-149, -71, -101, 93, 19, -27, -100], [58, 83, -189, 45]] Output:
[ "[71, -51, -128, -90, 11, -86, 93, 83]" ]
task207-05b18e3cb9974f81bdc25d8c5fc74f9b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-71, 2, -39, -146, -44, 94, 75], [70, 86, 86, -77, -167, -13], [-196, -99, -170], [-18, -122, -23, -17, -120], [-95, 69, -138, 55, 67, -101, -88]] Output:
[ "[94, 86, -99, -17, 69]" ]
task207-eaa479ff5f884c4c9503b1aeca05e06a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[11, 39, 91, -53, -190], [-91, 25, -38, 71, -123], [-24, -130, 50, -137, -129], [57, -46, -92]] Output:
[ "[91, 71, 50, 57]" ]
task207-b5be5afb16db4fddbc25313d0bb70eec
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-174, -62, -160, -86, -45, -89], [-192, -39, 75, -103, -30], [-128, 20], [-49, 57, 83, -13, -156], [-88, -27]] Output:
[ "[-45, 75, 20, 83, -27]" ]
task207-c069efee77d5481d98953acc33472c87
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[25, -189, -85, -47, -70], [-57, -125, 76, -134, 82, 40], [94, 20], [-37, 72, 77, 70, -16], [-31, -162], [-156, -105, 54, 64, 15, -159]] Output:
[ "[25, 82, 94, 77, -31, 64]" ]
task207-68c54ddd1e944660b955fb5ae9eaffa7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-102, 30, 9, -138, 13], [55, -113]] Output:
[ "[30, 55]" ]
task207-ec0ee6279a2c48178cd18295702f50cd
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-191, 0], [-137, -88], [-184, -17], [-122, 25], [-62, 75, -138, -157], [12, 8, -192, 95, -45], [-84, -47, -13], [-168, -82, -93, 59, -172], [84, 81, 53, -166, 25, -164]] Output:
[ "[0, -88, -17, 25, 75, 95, -13, 59, 84]" ]
task207-cf104808777b4a62815387eb90200172
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-53, -73, -82, 33, 27], [97, -191, -108, -169, -5, -166], [-28, -53, 55, -29, -159, -117], [-103, -167], [27, -179, 85, -44, -100]] Output:
[ "[33, 97, 55, -103, 85]" ]
task207-1267e849c5b64cbe9423a2f0e75a55a2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-64, 99, 65, 88], [-186, -73, -84, -101, 84], [-30, 38, 96, 62, -37, -87, -122], [-23, -180, -3, 25, -88, -137], [-104, -169, -184, -43, -133]] Output:
[ "[99, 84, 96, 25, -43]" ]
task207-a72cfe485a93431d877b67b0a003f4ab
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[88, -97], [-155, 90, 79, -45, -74], [-98, -154, -56, -15, -63, -2, 82], [-71, -117, 57, -144, -150], [-34, -109, -7, -121, 68, 39, -69], [-200, -116, -54], [-200, -117, -150, -172, 38], [-91, -175, -50, -184, -143]] Output:
[ "[88, 90, 82, 57, 68, -54, 38, -50]" ]
task207-029779f3214e4a43869575a54ae0a5db
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-192, -47, -157, -196], [82, -50, 67, -200, -17], [-92, -55, -49, -69, -132], [79, -3, 52], [-150, -60, -116, -116, 98], [73, -195], [-162, -110, -14], [62, -87, -13, -118], [-15, -110, -118]] Output:
[ "[-47, 82, -49, 79, 98, 73, -14, 62, -15]" ]
task207-8d5ba56e64ed4c1fb53bc34517f70bf1
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-163, -129, -176, 12], [-28, -195, -125, -107, 23, 69], [-128, -129, -47, -30], [-53, -56, -32, -67, -7, -81, -156]] Output:
[ "[12, 69, -30, -7]" ]
task207-24fcf75a694d454f87e98f9801468db7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-75, -110, -13, -96, 22], [-199, -154, 9], [-80, -160], [-90, 65, -167, -77, -28]] Output:
[ "[22, 9, -80, 65]" ]
task207-bd045d3ea8e64c9887def4e46e887d79
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-98, 28, 86, -178, 63, -85, 41], [-19, 96, 56, 73, -53], [-157, 56, 47, -93, -179], [-181, -39, 84, 46, 25, -136, 30], [61, 34, -178, 77, -147]] Output:
[ "[86, 96, 56, 84, 77]" ]
task207-2f195d8a346947ae82b2e014ccdd6dd5
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-48, 68, -52, -49, -112, -163, -151], [0, -6, 87, -200], [-29, 83, -96, -184, -31], [17, -47, -49, -194], [57, -111, -60, 31, 41, -98, -85], [-61, -19, -66, 55, 16]] Output:
[ "[68, 87, 83, 17, 57, 55]" ]
task207-4a92d77b2732447ebdcfbc9276186021
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-73, -15], [-140, 38, -65, 86], [98, 78, 62, 62, 28, -101], [-94, -179, -193, 47, 72, -138, 56], [77, 6, -93, 53, 60]] Output:
[ "[-15, 86, 98, 72, 77]" ]
task207-c76192f566e840e1a9a1f07b0e6090b5