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: [[-180, 21], [33, -80, 14, -43, -84, 14], [-105, -186, -16, -48, -117, -72], [93, -69, -138, 80, -115, 7, -108], [-185, 5]] Output:
[ "[21, 33, -16, 93, 5]" ]
task207-a3c15a0b54214a3f994a720c11e7204d
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: [[-162, 1, -182, -111, -17, -41], [-18, -13, -21, -45, -56, -160, 23], [-108, -163, -71], [29, 36, 91, -138, -45, -79], [84, -176, 24, 99, 14, -42], [-167, -194, -130, -74, 69, 27, -187]] Output:
[ "[1, 23, -71, 91, 99, 69]" ]
task207-0e1fb3ab1885461a9ea05bd4d1a8da47
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, -1, -125, 45, 38, 0, -57], [-21, 67], [-5, -136, 48, 52, -39], [-157, -9, -112, -190, -52], [86, -16], [-170, -20, -57, 8], [98, 76], [36, -122, 61, -42, 51, -30, 57]] Output:
[ "[45, 67, 52, -9, 86, 8, 98, 61]" ]
task207-b43baa8676d34be4b7636e84a4ee62d2
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: [[-59, 44, -29], [-168, -64, -74, 51, -166], [-22, -130, -9, -67, -98, 46, -114]] Output:
[ "[44, 51, 46]" ]
task207-84d946b8fcd6498fafd872b2a90d9219
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, -80], [-56, -98, 43, -194], [-152, -199, -81, -153, -164, -184, 97]] Output:
[ "[-65, 43, 97]" ]
task207-3bd7fed4c3a6420390507fff969315e7
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: [[40, 47, -2, -157, -8], [-190, -1, -20, -135], [20, 29, 96, 80, -131], [55, -158, -165, 51, -139, -143, -98], [-25, 90, -142, 78, -138, -130], [-138, -172, -91, -39, -28, -152], [-74, 25], [-22, -118, -122]] Output:
[ "[47, -1, 96, 55, 90, -28, 25, -22]" ]
task207-431264de83514f3ba8781c7e74635103
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: [[-182, -10, -110, 2, -93, -156, 18], [66, -30, 56, -188, 50, 50, -29], [23, 28, 81, -72]] Output:
[ "[18, 66, 81]" ]
task207-5895723b9a6e4f009638016b00480239
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, -65, -180, -185, -180], [-71, 52, 95], [-1, -150, -124, -39, -94], [4, 44, 27], [-69, -100, -171, -138, -121]] Output:
[ "[-65, 95, -1, 44, -69]" ]
task207-8f012513f7994341870030bd1a70f6cf
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: [[-61, 31, -135, 15, -167, 30], [-1, -18], [65, 41, -43, -165, -28, -135], [-15, -117], [-38, -151], [12, 59, -5, -79, -104, -109, -93], [-66, -61, -171, -23]] Output:
[ "[31, -1, 65, -15, -38, 59, -23]" ]
task207-e7e32d867d3544588a8e9aeafdb8e0a3
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, -45], [-56, -139, 59, -99, 67, 7, -74], [94, -63, -132], [-194, 54, -99, 81, 0, -129], [21, 66, 45, -73], [-161, -137, -125, 10, -173, -64]] Output:
[ "[-45, 67, 94, 81, 66, 10]" ]
task207-4c59f787a15d4684bca03b2f59da5fe4
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, -51], [41, 21, -161, -152, -183, 53], [45, 0, 53, 20, -86, 40], [0, -51, -190, 56]] Output:
[ "[-9, 53, 53, 56]" ]
task207-3405ca3a828a4ad98efe15537e83b506
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, -180, -147], [-183, 27], [-178, -39, -138, -43, -89, 0], [65, 17, 61]] Output:
[ "[77, 27, 0, 65]" ]
task207-2068eee95a5240a5bef7c4243007a6f3
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, -184, 23, -24, -180, -159], [-63, 52, -7], [-83, 11], [-87, -52]] Output:
[ "[23, 52, 11, -52]" ]
task207-e7d7ef09ba504d42a4f4b068f0e9bd90
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, -100, 98, 55, -83], [-191, -163, 76, -104, 67, 62], [-105, 72, -28, -58], [58, 1, -24, -98], [79, -22, -173, -125, -112, -157, -143], [-128, -10, 1, -121, 47, -180, -129], [-106, -11, -164, -79, 25, -118]] Output:
[ "[98, 76, 72, 58, 79, 47, 25]" ]
task207-b946201d355a4613b969b6f6c49d17f0
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: [[-17, 62], [-61, -61, -199, -194, -54, -87, -161]] Output:
[ "[62, -54]" ]
task207-de4a252ca3bb4328af82a69d60ec419a
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: [[-66, -86, 6, -14], [4, 67, -113], [-131, 82, -155, 96, -59], [-57, 38, -140], [-92, -27, 68, -25, 18], [-113, -184]] Output:
[ "[6, 67, 96, 38, 68, -113]" ]
task207-4afbecd5aaef4694b493087d99aac75a
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, 56], [-32, -191], [5, -174, -126, 1], [-111, -7, -102, -131]] Output:
[ "[56, -32, 5, -7]" ]
task207-a094d09768614a37829fb6e262163f7d
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, -111, 11, 72, 30, 48, -106], [-51, 53, -22, -137]] Output:
[ "[72, 53]" ]
task207-ada540ec7d464df09ad2c353cbf7bdb7
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: [[-175, -161, -85, 30, -60, -80, -111], [36, -89], [-189, 1, -167, -61], [75, -182, 68, 54, -59, 31, 21], [24, 22, -138, 0, -185, 53, -199], [3, 87, -98, 77, -40, -15, -179], [-85, -90, 13, 24, 66, -129], [79, -120, 34, -188]] Output:
[ "[30, 36, 1, 75, 53, 87, 66, 79]" ]
task207-beaa84f318df4026afb8d418fa1fe94a
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: [[-165, -49, -162], [47, -107, -58, 96, -87, -129, -158], [-58, -59, 6, 52], [23, -79, 78, 29], [-100, -141, -9, 18], [-183, -117, 50, -198, 88, -11], [26, 86, 23, -106, 60, 35]] Output:
[ "[-49, 96, 52, 78, 18, 88, 86]" ]
task207-688aa179e0834664b2eb966401379bb8
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: [[-26, 56, 41, 60, -60, 72], [-15, -86, 9, -168], [29, -92, 84, -180, -134, -39], [7, 38, -198, -158], [10, 65]] Output:
[ "[72, 9, 84, 38, 65]" ]
task207-fee6ec01476b4577ad027028c6ba2106
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, -86, -149, -147], [87, -57, 34, -170, -88, 17]] Output:
[ "[-86, 87]" ]
task207-42bf0a96036c4d61a44b19fc2aee6fbf
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, -4], [-45, 72, -120, 42, 8], [48, -61], [3, -142, -86, -172]] Output:
[ "[-4, 72, 48, 3]" ]
task207-6945c38fe08445f68b00bd49c5261216
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, 85, -136, 11, -89, -115], [-50, -170, -91], [-2, -171, 2, -137, 30]] Output:
[ "[85, -50, 30]" ]
task207-ac456fc201034a1daefa16f8cb04a8d7
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: [[-59, -70, -167], [-159, 54], [95, -15, 33, 16, 60, -39, 69], [70, -160], [13, -154, -44, 65, -53], [-8, -98, 32, 77, -190]] Output:
[ "[-59, 54, 95, 70, 65, 77]" ]
task207-1e9563bc96cb4f37bbfc28a25f178ed1
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, -156, -106, 90, -200], [-161, 69, 74, 100], [58, -49], [-105, -132, -124, -184, 75], [32, -162]] Output:
[ "[90, 100, 58, 75, 32]" ]
task207-77e210eec53d42749467bcb52bdec683
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: [[-189, 37, 51, -147, -25], [-57, -163], [57, -74], [-191, 35], [66, -191, 55, 2, -28, -171, -101], [12, -167, -38, -170]] Output:
[ "[51, -57, 57, 35, 66, 12]" ]
task207-297cda961f234bb1b118e619efee1223
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: [[-99, -16], [-40, -15, -17], [23, -34, 64, -30, -75, 62], [-80, -186, 44], [-27, -69, -196, 89, -49, 37, -20], [24, -169], [-14, 13], [28, 44, -195, 91]] Output:
[ "[-16, -15, 64, 44, 89, 24, 13, 91]" ]
task207-5c0b917dbe344eb084e3298ae766c8de
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: [[30, -25, -16, 39, -16], [-51, -147, 12, -150, -58, -35], [5, 45], [24, 3]] Output:
[ "[39, 12, 45, 24]" ]
task207-fa7dd0dec2c14f48b94a0676ebbbec9d
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: [[-23, -9, -25, 34, -127, -36], [-192, -82, 58, 37, -8], [-15, 31, 11, -39, -106, -109], [-52, -109, -73, 85, -31, 84, -164], [-34, -23, -116, -87, -2, 83, -130], [-155, -129, -176, -77, -137, -133, -138], [-178, 29, -65, -164, -23, -141, 33], [-24, -63, -40, 12, -170, -111, -141]] Output:
[ "[34, 58, 31, 85, 83, -77, 33, 12]" ]
task207-79aaee0efaac4e98bcefad610ef94f59
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: [[-179, -62], [89, -23]] Output:
[ "[-62, 89]" ]
task207-54ce770ea3d84c5f8600767f84a8d3b6
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, 84, -188], [58, -44, -167, -105, 37], [-92, -44, 3, 23, 26, 37], [-107, -65, 55, 81], [-32, 58], [31, -25, -80, -152, -111, -154, -147], [-166, -135]] Output:
[ "[84, 58, 37, 81, 58, 31, -135]" ]
task207-ead2ff830a554e21bbdaf88fffade575
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, 37, -96, 0, -20], [98, -30]] Output:
[ "[37, 98]" ]
task207-7a79887fa6c34f2e952c4f75fe2631b9
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: [[-49, 17, -169, -187, -195, 57, 84], [0, 100, -133, 45, -32, 9], [-172, -182, -97, 77, -129, -184], [19, -170]] Output:
[ "[84, 100, 77, 19]" ]
task207-a4d3610e3d894571b26e3d258124e144
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: [[23, -125, -78, -194], [-191, -197, 29, -147]] Output:
[ "[23, 29]" ]
task207-57ddd9266a5d462cb30ce2072e7cae5c
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, -113], [-8, -125], [-144, -188, -181, -158, 56, -31, -143], [-122, 39, 39, -38], [-122, -106, -154, 32, -131, 99, -43]] Output:
[ "[88, -8, 56, 39, 99]" ]
task207-872240bda1fc4c61a19697afefc31846
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: [[-134, -48, 4, 24, 71, -187, -166], [44, 10, 44, -55], [-63, -29, 15, -89, 78, 63, -106], [-112, -11, -134, 87, -46], [-128, -93, 68, -87], [-147, -63, 91]] Output:
[ "[71, 44, 78, 87, 68, 91]" ]
task207-814ca5d18d0048009f340a682e811a0a
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: [[-87, 47, 12, 29, -50, 53], [-27, -35, -131], [-180, -120], [-131, -137, -128], [-24, -175, 70], [-116, 56, -70, 35, -50], [-40, 43], [-125, -194, 21, -147, -47, -72], [-34, 91, -19, -103, -105, -55, -17]] Output:
[ "[53, -27, -120, -128, 70, 56, 43, 21, 91]" ]
task207-dbeb2cf42c894518a29f3e353c6e9782
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, -64, -170, -186], [-94, -189, -41], [-26, -162, -178, -89, -35]] Output:
[ "[-64, -41, -26]" ]
task207-bb556ee43323424b88bd1dcf6a9d8f4a
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, 45, -28, -159], [-174, -161, -104, -146, -48, -3], [56, -174, -196, -19, -185, -60], [-96, 38, 38, 16], [-121, -149]] Output:
[ "[45, -3, 56, 38, -121]" ]
task207-fe79091d5b404ea0985f90ef61d71b2a
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: [[-127, -198], [-79, -3, 61, -150], [-20, -44, -78, -133, -20, 16], [-71, -148]] Output:
[ "[-127, 61, 16, -71]" ]
task207-785fb5cd8c1b497296cf3c76b155bb34
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: [[66, -91, -178, 47, -92], [-157, -137, -92, -20, -169, -164], [-144, 60, 83, 75, -42, -10, -84], [100, -12, -20, -155, -6], [-86, -85, -98, -120, 26, -67, -155]] Output:
[ "[66, -20, 83, 100, 26]" ]
task207-16886a29caaf4f27a0e73a095aaf81d9
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, 53, 21, -86, -129], [-90, -53, 37, -51, 75, -10, -32], [-113, 40]] Output:
[ "[53, 75, 40]" ]
task207-3b398649365943d1ad296534b94e6622
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, -58, -87, -185, -42, 40], [-24, -182, 19], [-156, -6, -10], [-35, 69, 49, -56, -123]] Output:
[ "[40, 19, -6, 69]" ]
task207-9bb9ea80f6f84ab89ed688578995baa0
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, -110, 97, -107], [-183, 45, -32, -7, -97, -142, -6], [-47, -104, 26, -34], [-113, -140, -200, -197, -42], [-65, 45], [44, -104], [27, -69], [-64, -42, -114]] Output:
[ "[97, 45, 26, -42, 45, 44, 27, -42]" ]
task207-f66d526c8beb4c379090cb547ae28a01
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: [[-66, -45, -114, -168, -36, -68], [61, 14, -174, -153, 100, -126], [57, -1, -16], [-16, 64], [26, 12, 10, 54, -96], [83, 91, 9, -178, 72]] Output:
[ "[-36, 100, 57, 64, 54, 91]" ]
task207-3ceeeca94c8f426baf805c7a37e18760
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: [[79, -7, -151], [-41, -102, 9, -170, -165, -188], [-102, -5, -13, 71, 15, -111], [-77, 69, 0, 97, 92], [-91, -21, -158, -107, -183, 84, -43], [17, 51, -133, -112, -85, -185, -61], [-162, 26, -145, 13, -48, 67, 83], [-196, 54, -133, -61, -89, -98]] Output:
[ "[79, 9, 71, 97, 84, 51, 83, 54]" ]
task207-9c4bee5cb4b14786b7cf70268854d053
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, -12, -59, -188, 50, 10, 39], [-58, 14, -178, -18, 18], [-176, -90, -1, -119, -128], [-146, -137, -57, 35, -193, 13, 53], [67, -174], [-186, -182, -155, -185]] Output:
[ "[50, 18, -1, 53, 67, -155]" ]
task207-b4c268d7546943d1ae8910e34fe0a201
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: [[-30, -123], [-153, 72, -27, 73, -60, -5], [-69, 47, 91, -133], [-81, 81, 67, -148, -104], [-79, 69, 80, 98, 81, 32], [54, -39]] Output:
[ "[-30, 73, 91, 81, 98, 54]" ]
task207-371d92b93c904b24a3dd68f5e1ee7cf0
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, -46, -173], [-18, -73, 89, 90], [-193, -171, -57, -138]] Output:
[ "[-20, 90, -57]" ]
task207-23c5daba967244aba5bbaaa5af33f15b
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: [[-49, -12], [-172, 49], [-200, 56, -24], [-166, 98, -193, -130, -140, 7, -51], [84, -37, 59], [-65, 60, -47, 94], [-100, 84, 85, 79, -6], [92, -197, -39, 87, -126], [30, -176, 87, -46, 45, -58, -150]] Output:
[ "[-12, 49, 56, 98, 84, 94, 85, 92, 87]" ]
task207-f27ef916bd87409dacee86175a2aef1b
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, -108, -143, -93, -181, 88], [-12, 1, -39], [-90, -38, -41, 15], [-193, -166, -175, -83, 49, -152, 62], [-146, -174], [-134, -53, 89, -194, 8, -113]] Output:
[ "[88, 1, 15, 62, -146, 89]" ]
task207-50586cce96ec4b8f837a4df1cfe98ba2
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, -2, -144, -101, -43, -86, -124], [-104, -10, -67, -73]] Output:
[ "[81, -10]" ]
task207-e2c5ad4a085947758d128d108973b08b
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: [[-90, 55, -104, 15, -137], [-46, 84, -31, -78, -152, -188, -8]] Output:
[ "[55, 84]" ]
task207-47811cf0a8974b059d04fdd46aa09684
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: [[45, -184, 9, -58, -100, 99, 9], [-45, -63, -17, 46, 69, -110], [-173, -148, -189], [88, 49]] Output:
[ "[99, 69, -148, 88]" ]
task207-e52f6d7c53af48408cee3bd0879fa863
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: [[-176, -188, -117, 16, -93, 50, -111], [98, -7, -34, -98, -146], [-109, 48, -100], [-170, 22, -50, -178, 49, 22, -88], [-105, 69, -146, -138], [-28, -85, -114, 12, -39, 71], [1, 69, -14, 78, -61], [-195, -145], [-10, -174, 10, 45, 53]] Output:
[ "[50, 98, 48, 49, 69, 71, 78, -145, 53]" ]
task207-434bd5e92ef84f51893b97547e0fecdf
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, -198, -103, 12, -98], [-36, -28, 19, 36], [-81, -16, -173, -180, -154, -77], [-66, 45, -87, -96, -11, -70], [-158, 94], [77, 29, -33, -65, -73], [-15, -8, -68, 33, -143, -36], [-78, 29, 67, 66]] Output:
[ "[12, 36, -16, 45, 94, 77, 33, 67]" ]
task207-12c9d9751e1e497e8fda4b62c667fa21
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: [[-59, 47, 48], [20, 80, 29, -45], [-176, 74, -98, -30], [-78, -178, -107, -13, 28, -80, -200], [46, -71, -66, -2, -136, 97, -76], [-80, -53, -51, -8]] Output:
[ "[48, 80, 74, 28, 97, -8]" ]
task207-d6b8781fdfac4f25ae5349af8721a32f
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: [[-90, -128, -197, -98, 96], [82, -7, -18, -68, 92, -106, -189], [-44, -192, -189], [-50, -6, 44], [-52, -27, 93, -115], [-148, -6, -101, 36], [73, 68, -82, -18, -67, 76, 15], [57, -138, 91, 65, 51, -124, 77]] Output:
[ "[96, 92, -44, 44, 93, 36, 76, 91]" ]
task207-fe457b9787a24805921f430229fb572a
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: [[-99, -132, 11, -165, -121], [-87, -140, 80], [-167, -13, 71, 52], [10, -76, -35, -38, 97]] Output:
[ "[11, 80, 71, 97]" ]
task207-c4195379bb124c53a1a191b9277d75c5
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: [[-137, -117, -1, 42, -157], [-170, -105, 37, 62, -31, -118, 49], [-146, 19], [-144, -83], [-63, -159, -14, -135, -56], [-163, -145, -154, -174, -184, -7]] Output:
[ "[42, 62, 19, -83, -14, -7]" ]
task207-5b36dfabce8d40ee88c26fdeef3bd034
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: [[-21, -149, -152, -96, -79], [46, -122, -162], [54, -75, -129, 61, 93], [-74, -12], [-7, -176, -51], [-170, -19, -75, -187], [-67, -121, -178, -167, -22], [-193, -15, -164, -142, 48, -109, 44], [-54, -82, -40, -75, -111, -13]] Output:
[ "[-21, 46, 93, -12, -7, -19, -22, 48, -13]" ]
task207-68d9396765954728b5bfee657f1d8c15
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, -52, 18, 44, -52, -77, -3], [-120, -108, -65], [-48, -172, -93, -56, -12, -51, 65], [-117, 17, -22, 71], [95, -153, -17]] Output:
[ "[44, -65, 65, 71, 95]" ]
task207-aef69063932a419a86a0e59ea027f9ab
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: [[-35, -21, 84, 48, 68], [-103, -38, 78, -9, -48, 23], [56, -85, 72, -57, -147, 80, -10], [-3, -66, -9, 22, 90], [54, 52, 8, -71, -100], [19, -72, -194, -139], [19, 17, -83, -17, -57], [-106, 35, -142, -144, 3], [-198, -176, -90, 59, -7]] Output:
[ "[84, 78, 80, 90, 54, 19, 19, 35, 59]" ]
task207-1934140de4ee46729f01e8f680dc78c5
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: [[21, -8, 73, 90, 57], [-105, 44], [-80, -2, -180, -178, 83], [-198, 16, -77, -72, 15, -140], [-35, 95, 14], [-108, -4, 46, 98, -183], [-160, -92, 76, -43], [-117, -196, -42, -113]] Output:
[ "[90, 44, 83, 16, 95, 98, 76, -42]" ]
task207-2b0d67fbd73d482aa2a1d945a3b5eae9
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: [[-23, -44], [-151, 44, -125, -31, -175, 98, 73], [-134, -48, -191, -70], [4, 88]] Output:
[ "[-23, 98, -48, 88]" ]
task207-96a5cc272863477883d75998b03967d6
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: [[-130, -20, -171, -122, 49, -43], [-173, -82, 17], [87, -55, -70, -113], [69, 10, -121, -177]] Output:
[ "[49, 17, 87, 69]" ]
task207-7d9cb6f0e3734efe9850ca9f5ba50ac3
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, -168], [-36, -142], [49, 0, -128, -72, -83], [-170, 57, 74, -50, 1, 96, 96], [-114, -86, -69, -73, -29, -29, -178]] Output:
[ "[-9, -36, 49, 96, -29]" ]
task207-d566dfcef544401db241493c1f60e41d
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: [[-27, -161, -136, -179, 3, 71], [1, -149, -8, -92], [68, -153, 22, -72, -132], [-185, -152, 90, 8, -112, -67, 97]] Output:
[ "[71, 1, 68, 97]" ]
task207-c317d76ff6ef46e9a763beea309b184a
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, -74], [-145, -139, -19, -146, -135, -175], [-194, -82, 29, -44], [-20, -170, 24, 85, -135], [-190, 43, -136], [45, 86, -19, -108, -119, -184, -121], [-37, -35, -28, -12], [-13, -196, -94, -49, -39, -157], [-15, 69, 61, -31, -156, -63]] Output:
[ "[71, -19, 29, 85, 43, 86, -12, -13, 69]" ]
task207-5542d83fd7f04f03a2c6c0e0e11ff1f1
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, -169, 96, -180, -164, 79], [-122, -185, -106, 40, -31, -83], [64, -190, -84, 75, -52], [-7, 97, -75, -172], [-7, -51, -122], [19, -161, -171, -98, 57, 56], [78, -13, 75, -40, -99, 51], [-138, -63, -165, -12, 6, -107, -91]] Output:
[ "[96, 40, 75, 97, -7, 57, 78, 6]" ]
task207-db6209c0fbb14c0b963038df82db60ef
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, -107, -90, -141], [-196, 90, -101], [41, 52, -106, -140, -179], [41, -86, -5, -177, 28, 93, 90], [97, 63, 9, -182, 57, 99, 83], [-184, -181, -112, -81]] Output:
[ "[-1, 90, 52, 93, 99, -81]" ]
task207-a0ad77cf042b4de09ae3950b3f65bfa8
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: [[-118, -102, -93], [-111, -25, 70, 2, -89], [-150, 18, 93, 81, 28], [-184, -21, 68, 0, 30, -136]] Output:
[ "[-93, 70, 93, 68]" ]
task207-e7939e881765439e9a83cfc3ea0a4ee9
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: [[-115, -149, 39, -131, 8, -200, -47], [-144, 32, -110, -135, 4, -190], [-71, -169, -116, -51, -120, -2, 61], [57, -178, 83, -137, -139, -63], [12, -100, -24, -159], [70, -195, -44], [55, 13, -71, 21], [0, 54, -26, -120]] Output:
[ "[39, 32, 61, 83, 12, 70, 55, 54]" ]
task207-1a178bca136b436a9f75e0cbaac3d960
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: [[-106, -125, -44, 96, -133, -132], [49, -31, 95, 93, -29, 82], [-173, -84, -164, -58], [-24, -134, -184], [-150, -40, 20, -18, 71, -33, 16], [16, 38]] Output:
[ "[96, 95, -58, -24, 71, 38]" ]
task207-2edfabd569d040178f14ac0f85d1b882
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, -107, -111, -52, -133, 80], [-150, 54, 88, -69, 6], [84, -113, 35, -189, -49, -77, 19], [99, -97, -161, 61, -66, -73, 18], [34, -141]] Output:
[ "[80, 88, 84, 99, 34]" ]
task207-caaa258b9874484d8c9e2475a5640707
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: [[100, 3, -8, -15, -181, 25, -122], [-183, -120], [-95, -183, -94], [-34, -100, -172, 63, -139, -136], [-175, -113, -104, 50], [-170, -139], [-159, 80, 29, -100, -142, -108, -36], [56, -11], [-120, -109, -28, 88, -145, -92]] Output:
[ "[100, -120, -94, 63, 50, -139, 80, 56, 88]" ]
task207-35ef22fd30f94abc98c062a43b5b0ab0
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, -63, -120, 90, 43, -139, -138], [-72, -150, -84, 32, -104, -41], [-6, 5, -56, -124, 30]] Output:
[ "[90, 32, 30]" ]
task207-96a746cea28b417aa21761d1c678dbfc
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: [[-141, 32, -22, -28, -29, -119, 85], [-66, 21, -83]] Output:
[ "[85, 21]" ]
task207-a40dcfdb975a4d66b577c68f595dcfc8
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, -38, 89, -97, 90], [59, -124], [46, -114]] Output:
[ "[90, 59, 46]" ]
task207-c542bc7d8a8c47b7b1bb1bc1268560e9
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, -120, -69, 80, 56, -111, -19], [64, -158, -131, 32], [60, 26, -150, -14]] Output:
[ "[80, 64, 60]" ]
task207-6bbf17bc75fe4fd38ab03a2d783c612a
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, -66, -81, 89, -30], [44, -8, 61], [-180, 1, 46], [-40, -122, -17, -146], [-185, 4, -194]] Output:
[ "[89, 61, 46, -17, 4]" ]
task207-4e9f63b7345e48e597002bedd7b406e7
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, -91, -190, -138, -155], [82, -191, -76, 32], [66, -85, -66, -113, -49], [-128, -91, -46], [54, 11, -167, 74, 28, -127], [-195, -25, 74, -189, 9], [-24, -180, 92, -3, -181], [-96, -17, -144, 12, 50, -145], [16, -106, -196]] Output:
[ "[-91, 82, 66, -46, 74, 74, 92, 50, 16]" ]
task207-9c1d9d7610bf44f68109fa698512915e
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, -51, -87, 46], [-166, -93, -6, 1], [-128, -26, 26, 35, -48], [-198, -78, -151], [24, -176, -142, -169, -21, -44], [7, -142, -118, 87, 66, -29, -121]] Output:
[ "[84, 1, 35, -78, 24, 87]" ]
task207-778a72312f684be58cc3b0d2ad15cab8
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, 62, -43], [99, -76, 11, 31], [-172, -123, -78, -181, -122], [-125, -73, -115, -153, -191], [-137, 47, -72, -169, -69, -198]] Output:
[ "[84, 99, -78, -73, 47]" ]
task207-641959352e5f4a53aa73da60a23fd471
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, 31, -69, -197, -111, 42], [31, 97, -1, -200, -185, -55], [-53, -154, 36], [-40, 96, -166, -144, -86]] Output:
[ "[42, 97, 36, 96]" ]
task207-66564e05dbee4feb90e1a9c47fec0252
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: [[-83, 24, -69, 26, 65, 98, 83], [-6, -181, 72, -139, -1, -80, 64], [48, -15, -94, -160, -61, -158, 41]] Output:
[ "[98, 72, 48]" ]
task207-477984042ddc42e9ba9130b5edbbc82d
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: [[69, -33, -167, -28], [79, 58, -119, 83, -40], [-133, -121, -141, -139, -135, 51, 22], [17, 54, -165, -94, 40], [-128, -45, 64, 42, 66]] Output:
[ "[69, 83, 51, 54, 66]" ]
task207-9411bb0679474082a6743b106d65ee00
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: [[-121, -111, 99], [57, 45, -151, 84], [-2, -175, 58, -22], [-50, -17, -90, 40], [-159, 96], [-119, 83, -109, 17, -85, -185, -190], [-64, 61, 11, -81, -134, 45], [66, -63, 91, -148, -94]] Output:
[ "[99, 84, 58, 40, 96, 83, 61, 91]" ]
task207-1613ff15174f48138dcdfb7f7531f33c
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: [[-143, -20], [-168, -117, -127, -174, -148, 12, -135], [-77, -145], [13, 94, 13, 53], [-145, -174, -131, -65, -18, 24], [-126, -151, -180, -47, 35], [-123, 9], [-189, -71, 40, -167, -23], [-147, -91, -131, -75]] Output:
[ "[-20, 12, -77, 94, 24, 35, 9, 40, -75]" ]
task207-253f86ea77b6416d843de1c2d6b72bc4
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, -187, -171, 50, -196], [88, 43, -193, -80, -124, 17], [-12, -174, -34, -35, -40], [-50, -28]] Output:
[ "[50, 88, -12, -28]" ]
task207-014babc632c14f95b62a265db844dca5
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: [[24, -153, -159, -139, -55, 40, 36], [61, -4, -121, -168, -97, -87], [-10, -149, -32, -1, 55, 50], [99, 85, -50, -124, -79, -161, 93], [-78, 30, -109, -145, -74, 62]] Output:
[ "[40, 61, 55, 99, 62]" ]
task207-6e1f3533a8da4acbbb4da1c0cc1c0973
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, -136, 66, -80, -57, -176, 70], [-124, -59, 36, -113], [-47, -52, 8, -75, 56, 53, -137], [-183, 85, 97]] Output:
[ "[70, 36, 56, 97]" ]
task207-ec962a268cbb41e3a29684fe67723bc1
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, 52, -162], [-148, 68, -15, -197, 40], [83, -139, 72, 80, -145, -23], [-22, 22], [-7, -96, -172], [-62, -53, 78, 65, -165]] Output:
[ "[52, 68, 83, 22, -7, 78]" ]
task207-37aff9cd6dfa4ad29ee2e394d7452aca
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: [[-82, 52], [-132, 42, 81, 43, -176, 91, 95], [-27, 91, -188, 1]] Output:
[ "[52, 95, 91]" ]
task207-a6388324aee74a4786b232165cb0cb57
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: [[-27, -29, 57, -1], [-52, -139, 44, -181, -105], [-58, -124, 41, 99, -59, -153, -78]] Output:
[ "[57, 44, 99]" ]
task207-6220a7434d3d47058cad111fcebf7a03
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: [[-140, -111, 66], [-115, -45, -50, -182, -180, -160, 12], [32, -119, 98], [64, -22, -56], [-189, -160, -56], [-16, 39, 72, 30, -68, 74, 23]] Output:
[ "[66, 12, 98, 64, -56, 74]" ]
task207-cc09d4d0e8344d0b91f3cb0bcc26bcfc
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, -167, -153, -136], [-113, 100], [93, -147, -179, -189, 10, 43, 90], [86, -12, -126, 88, 92, -87, -195], [-49, -160, -4, 35, 68, -200, -167], [-179, -179, -19, 59, -83, -99, -167]] Output:
[ "[-38, 100, 93, 92, 68, 59]" ]
task207-ba9ca00aaad14555a4e90d0c61c9c60e
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: [[69, -92, -181, 13, 31, -185], [-14, -145, -116, 13, -132, 90, 0], [-188, -25, -182, -101, 14]] Output:
[ "[69, 90, 14]" ]
task207-b6291545434d4a668e99ccae5040d7be
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: [[-118, -191, -190, -32], [75, -182, -177, -117], [-12, 65, -162, 74, -31], [99, -83, -114, -42, -178, -110, -23], [-137, -99, 10, -144, 51], [-133, 1, -81, -49], [-10, -189, 16, -148], [50, -53, -110, -152, -38, -187]] Output:
[ "[-32, 75, 74, 99, 51, 1, 16, 50]" ]
task207-151fa768c21a4e09b2be318dfd760c2f