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: [[-191, 65, -184, -146], [-87, 81, -99, 58, -144, -15, 78], [-11, -56, -27], [79, -159, -135, -16, 33, -105], [-72, 88, -22, -97, -124], [-140, -146, 27, -151, -51, -152], [-156, -199, 29]] Output:
[ "[65, 81, -11, 79, 88, 27, 29]" ]
task207-a1889d31497146f68a74cd84e5a926ac
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, -25, -176], [-5, -136, -182, -7, 64], [-78, -108], [91, -14], [37, -71, 4], [-22, 97, -104], [-45, -114, -113, 92, 24, -127]] Output:
[ "[64, 64, -78, 91, 37, 97, 92]" ]
task207-0864bef1f6774e53845e40c9d458eb52
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, -27, 48, -179], [-131, -130], [-173, -150], [-194, -47, -114, 37, 43, -54]] Output:
[ "[53, -130, -150, 43]" ]
task207-b93105809e0a488184a2f8eb560b70d2
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: [[-3, -85, 99, 98, -191, -35], [-112, -171, 39, -93, 54], [32, -44, -123, -78, -171]] Output:
[ "[99, 54, 32]" ]
task207-1bbe08a4b7284e1cad0ec984c5ed3af0
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: [[2, -138, -171, -156, -18], [80, -175, -132, -144, -187, 15, -35], [48, 0, -129, 6, -43, 15, -81], [-182, -119, -33, -118], [-193, -147, 56, 92, -153, -107], [-12, 15], [-190, -137], [-184, -198, -92]] Output:
[ "[2, 80, 48, -33, 92, 15, -137, -92]" ]
task207-31137612e49d4680855d663ca506873b
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, -200], [86, 56, -145, -90, -17, 12], [-164, -173, -9, 85, 84, 67], [-79, 45, -171, -70, -12], [-169, 5, -190], [-188, -89, 86, 92], [86, -78, -34]] Output:
[ "[-28, 86, 85, 45, 5, 92, 86]" ]
task207-adff70ef88734fd2bd168d1df842bdcb
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, -99, 30], [-131, -126, 91, 75, 99, 80], [6, 27, -111, -45], [-155, 47, -163, -1, -163, 19], [-195, 40, -198, -180]] Output:
[ "[30, 99, 27, 47, 40]" ]
task207-e85ab40512384fe4959a1692374e3956
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: [[-46, -187, -163], [-32, -148, -39], [-187, -36, 52], [-19, -167, -22, -70, -135, -78, -44], [11, -122, -181, 4, 20, -61, 38], [-26, -73, -44], [29, 87, 68, 15, -29], [-147, -70, -106, 90], [-16, -100, 30, 74, -65]] Output:
[ "[-46, -32, 52, -19, 38, -26, 87, 90, 74]" ]
task207-04bec51dedf2497ebf24ad98ea85da8e
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: [[31, -165], [-101, 40, -161, -62, -45, 59, -53], [-85, -79], [75, -159], [-168, -76], [-160, 32, -16, -61, 21, -79, -39], [-110, -4, -158], [1, 58, -146, -174]] Output:
[ "[31, 59, -79, 75, -76, 32, -4, 58]" ]
task207-8e4f2fc4d8074eda9db021c9e6936f37
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, -88, 31, -91, 85, -164], [-63, -142, -35, 17, 55, 28, -87], [-70, -33, -145, 66], [-13, -45, -3, -75, 73, -67], [-185, -63, -193]] Output:
[ "[85, 55, 66, 73, -63]" ]
task207-ceae756f56df46c789b1e7a326e605f4
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, -179], [22, -5, 84, -35, -50], [92, 39, -45, -119, -83, 93], [-143, -106, 1, -79], [-7, 20, -68, -40, 67, -66], [-5, -82, 94, 36, -171]] Output:
[ "[35, 84, 93, 1, 67, 94]" ]
task207-3c99a063c47247499d9dafbbb1a61a49
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: [[-128, -66], [-1, -43, -157], [-150, 35, -111, 87, -10, -65], [13, 94, -110, -90], [-145, 40, -12, 77, 54, -24], [16, -143], [-157, 6, -158, -152, -149]] Output:
[ "[-66, -1, 87, 94, 77, 16, 6]" ]
task207-648c93feeffe456ea7f4376c9a161d31
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: [[-46, -30, -38, -119], [-5, -176, 12, 1, -138], [-111, -82], [-18, -83, -46]] Output:
[ "[-30, 12, -82, -18]" ]
task207-b6a58d1ddf9740baaabfb47b4585450a
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, -173, 27, 69, -53, -140, -166], [-198, -73, 95, 10], [82, -186, -168, -94, -6], [52, -73, 66, -106, 48, -37], [-78, -67, -36, -147, -18, -11]] Output:
[ "[79, 95, 82, 66, -11]" ]
task207-d863879cfee1438d95a8ef32ced13764
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, 98, 56, 53, -188], [-24, -102, -85], [-15, -169], [99, 98, 1, 99]] Output:
[ "[99, -24, -15, 99]" ]
task207-004edcdd0c434a338a0d30e599242156
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: [[-159, -185, -57, -107, 47, -24, 4], [-12, 72, 6], [-181, 82, -174, -39], [-17, -51, 88, -24, -134]] Output:
[ "[47, 72, 82, 88]" ]
task207-490dbd74f71e4f74aabb2af8b0fa2b81
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: [[19, -168], [-43, -84], [67, 5, 87], [-175, -77, -47, 76, -138]] Output:
[ "[19, -43, 87, 76]" ]
task207-aa855ebeae554bb08e17e2a1f4d5126b
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: [[18, 52, -51, 11, 11, -10, -110], [-106, 81, -107, 100, -32, -155, -20], [42, -8, 66, 59, 87, 50, -107], [17, -32, -36, 62], [-103, -54, 79], [-197, -15], [9, -79, -89, -91], [-57, 14, 68]] Output:
[ "[52, 100, 87, 62, 79, -15, 9, 68]" ]
task207-96fee4fb4efe4bbd90cff2838a767d47
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, 59, -57, 28, 64, -102], [56, -96, -15, -83, 92, -33, -20], [-194, 38, -125, -113], [83, 42, -29, 73], [-181, 70, -13, -200, 81, -133, -197], [5, -165, -97, -146]] Output:
[ "[64, 92, 38, 83, 81, 5]" ]
task207-238b7c39ff8c4c3da84188ab8778f97c
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, 42, -16, -193], [8, -8, -198, -38, 78], [-29, -4, 79], [-134, 20, -92, 39, -123, -166, -163]] Output:
[ "[42, 78, 79, 39]" ]
task207-02f7edbf07fd4164a23fdbad5b1c2db9
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: [[-2, -78, 35], [34, -140, -141], [-148, -164, -161, -45], [2, -106, -72]] Output:
[ "[35, 34, -45, 2]" ]
task207-80e2767dd21d4042abb77658c93cb36b
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: [[-198, -64, -78, -200, -41, 81], [61, 33, -137], [-198, -43, -19], [-85, -31, -60, 41, 96], [-182, 40, 32, 95, 86]] Output:
[ "[81, 61, -19, 96, 95]" ]
task207-e0c2945b59a04854bbade8d1d6cb6ba1
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, 71, 56, 44, 66], [-42, 32, 54, -12, -155], [-73, -144, 79, -31, -178], [-16, -184, 57, 1, 53, 42], [61, -77, 13, -58, -161], [-48, 53], [48, 32, -13], [53, 32, -62, 87, 89]] Output:
[ "[89, 54, 79, 57, 61, 53, 48, 89]" ]
task207-fe10c6a23f444ee1a143ddfbdc622881
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, -109], [39, 84, 32, -156, -197], [-125, -101, 88, -75, 85], [-128, -199, -28, -163, 55, 69]] Output:
[ "[-26, 84, 88, 69]" ]
task207-1989e0efc8f541f0a434a67bd4c4aa52
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, -72, -183, -96, 46, -166, -171], [-177, -39, -166], [-26, -4, -169, 66, -30, -68, -48], [33, -184, -112, -105, -93, -178, -199], [-42, 10, 81, -169], [0, -165, -74], [-50, 75, -67, -70], [-112, -24, -163, -14, -62, 54, 49], [-79, 53, 68, -194, -80, 92]] Output:
[ "[46, -39, 66, 33, 81, 0, 75, 54, 92]" ]
task207-4e4c0d0f671c47d6a61feb3a7238e852
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: [[-18, -128], [-145, 32, 11], [23, -194, 22], [42, -29, -32, -88], [59, -153, 71, -11, -3, -145], [-20, 12, 53, -168], [-137, 51], [42, 78, -57]] Output:
[ "[-18, 32, 23, 42, 71, 53, 51, 78]" ]
task207-bccf004798194a07ab970af8bbbf8b37
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: [[-19, -69, -153, -73], [-136, -112, -133], [30, -31], [59, -147, -105, 23, 54], [49, -59, 65, -41, -42, 22], [-133, -88, -102, -7], [-16, -96, -138, -48, -52], [-95, 86, -35, 37, 59, -151], [39, -117, -124, -196]] Output:
[ "[-19, -112, 30, 59, 65, -7, -16, 86, 39]" ]
task207-836726cf9e724e8e95b1558bdc07003f
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, -40, -117, 12, -188], [-158, -128, -13, -178, -167, -54, -8], [98, 28, -52, -32, -89, -145], [-102, 33, 84], [-129, 95, 44, 60, 70, 20, -57], [-113, -145, 81, -51], [-196, -133, -113, 75]] Output:
[ "[12, -8, 98, 84, 95, 81, 75]" ]
task207-1c35bafcc7e7496da5273fc19d42a13b
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, 79, 41], [51, -86, 53, -5, 21, -184], [-154, -142, -106, -101, 64, -181, 83], [57, -54, 15], [-18, 62, 1, 78, -41, -158], [-55, 7, 81, -151, 59], [-188, 43, 81, 74], [-24, 92, -107, -192, -21, -74]] Output:
[ "[99, 53, 83, 57, 78, 81, 81, 92]" ]
task207-73a806ee0ff2416095e8b66077feaf44
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: [[-156, -1, 53, 73, -23, -81, -133], [24, 69, -110], [82, -33]] Output:
[ "[73, 69, 82]" ]
task207-95de583ee6d74b299f76564f913ce46a
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, -86, 13], [-178, -168], [-189, 63, -106]] Output:
[ "[13, -168, 63]" ]
task207-5df913a3162a45cfaa5f2a649453484a
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: [[-2, -170, -178, -115], [52, 57, -200, -86, 14, 31, -19], [-121, 20, -2, -173, -85, -115, 97], [30, -119, -33], [-40, -53, 24, -133, -196]] Output:
[ "[-2, 57, 97, 30, 24]" ]
task207-25e0c2da8bf847ada1a76ca8985de2c0
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, -29, -138, -179, 33], [61, -170, -122, 6, -4, -168]] Output:
[ "[91, 61]" ]
task207-e1f5fe65362b4ed3bec17363f1a35b93
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, 59, 90, -99, -13, 68, -169], [-49, -99, -99], [-7, 78, -21, -166, -80, -96, -124], [58, 29, -90], [54, 86, 55, 75, 95, -129, 53], [-162, 86, -187, 45], [-120, 92, 25], [-38, -159, -175, 11, -106, -85, 87]] Output:
[ "[90, -49, 78, 58, 95, 86, 92, 87]" ]
task207-7c2b0f13eae7481290fc382d4f02743f
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, -111, -144, -99, 80, -146, -139], [-106, -181, 52, -11, -10], [93, 98, -6, 44, -38, 6, -89], [-191, 26, -62, -61, 74, 73], [26, -131, 70, -141], [-156, -74, -104, -193], [85, -17, -182], [-76, 17, 72, 69, -37, -27, 100], [-65, -104, -8, -41, 24, -193]] Output:
[ "[80, 52, 98, 74, 70, -74, 85, 100, 24]" ]
task207-dfea58cf3abf419cae0cfb144a8945ae
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, -16, -144, 95, -18, 76, -71], [-11, 72, -174, -102, -24, -31], [-81, 45, -105], [-154, -72, -98, -126, -95, -29, 99], [-2, -57, 22, -36, 43], [-57, -197, -76, -55, -36, 9], [-154, -44, -106, 13, 86], [-199, 61]] Output:
[ "[95, 72, 45, 99, 43, 9, 86, 61]" ]
task207-d1eb8d68d4b64a679445b0b10f817115
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: [[-149, -30, -192, -77, -66, -163], [-133, 10, -4, -18], [-69, -33, 77]] Output:
[ "[-30, 10, 77]" ]
task207-9327ffe8c18f420ea77b0487cb2b0049
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: [[46, -153, 12], [64, 16, -116, 58, -11], [0, -185]] Output:
[ "[46, 64, 0]" ]
task207-c2ec18f77b2b4d2a97052e79fbf9f9b8
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, -7, 7, -75], [-88, -113, -74, -51], [-17, 16, -105, 41]] Output:
[ "[26, -51, 41]" ]
task207-c0cab31726a048bfb43ea529b3c3a411
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, -120, 29, 60, -154, -64, -196], [8, -155, -132, -101, -155, -29, -53]] Output:
[ "[86, 8]" ]
task207-fe1b60cf6801490f8ebc30707b000c13
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, -26, -142, 86, -101, -57], [6, -16, 78, 34]] Output:
[ "[86, 78]" ]
task207-d40fc00a09564a48af6baf07307cf09b
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, -50, -198, 12, -192, -172, -144], [-126, 88], [-37, -197, -49, -177], [-187, 83], [65, -32, -176, -162]] Output:
[ "[12, 88, -37, 83, 65]" ]
task207-86c30fdbeb154974bbb68f47976fa234
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, -95], [-147, -194, 59, -179, -153, 89]] Output:
[ "[27, 89]" ]
task207-8e74a49c083c4f6ebc7f5a7fd30f63f3
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, -1, -114], [-31, -34, -161], [-58, 37, -127, 49, -125, -76], [-92, 25, 96, -27, 57, 37], [-3, -123, -55, 12, -110, 47], [-135, 98]] Output:
[ "[16, -31, 49, 96, 47, 98]" ]
task207-dca1f2fd27b644fea5dfdebce400387f
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, -178, -112, -138], [-67, 17, -43, -103, -85, -174, 13], [-40, -69, -159], [31, -65, 46, -91, -84], [-69, -151], [-26, -42, -28], [-92, -39, 89, -137]] Output:
[ "[-112, 17, -40, 46, -69, -26, 89]" ]
task207-591d8b3c4e5b4d4494f90a7f4ca64c09
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, 93, -70, -39], [-157, -29, 74, -14, -155], [74, -176, -85, -143, 4, 0, -25]] Output:
[ "[93, 74, 74]" ]
task207-2d2f4ad653a74b04b4ec2b7d924b6b8d
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, 52, -182], [-49, 20], [-25, -66, 79, -163, -78, -15], [-56, -4, 90, 31], [-180, -71], [-45, -145, 34], [-187, -128], [56, -140, -133, -194, -20]] Output:
[ "[52, 20, 79, 90, -71, 34, -128, 56]" ]
task207-6eb5bf2482be4e9ea366030effcddf8b
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: [[42, -58, 2, 28, -146, -57], [59, 83, -78, -145, 71, -132], [-105, -19]] Output:
[ "[42, 83, -19]" ]
task207-9c7e7eac86a24eadab67f878411ff544
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: [[67, 86, 4], [-163, 92, -59, -1, -131, -68], [35, -185, -178, -45, 39, -194], [-194, 75], [-185, -31, 37, -26, -2, -101], [-90, 58]] Output:
[ "[86, 92, 39, 75, 37, 58]" ]
task207-41efc2da0eb846bb8b7b35cffdf93f9a
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, -61], [-107, -55], [-130, -129, -168, -134], [-149, -44, 43, -39, 26, 19], [-127, 11, -16, -177, -161, 30, -197], [-123, -45, 91, -16, 55, -20]] Output:
[ "[-61, -55, -129, 43, 30, 91]" ]
task207-92ffe935f9a24a66a8004a43248fd5ee
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, -161, 42, -25, 16, 94], [63, -57, -172, -29], [12, -78, -192, -24], [21, -20, 14, 15, -93], [-13, -54, 37, 47], [-75, 11, 13, -49, 9, -85, -71], [40, 31, -163, -88, -130, -15, -84]] Output:
[ "[94, 63, 12, 21, 47, 13, 40]" ]
task207-33c22836721f49cebba96b3f8947e81c
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: [[-13, -95, 7, -111], [-18, -87, 84, 80]] Output:
[ "[7, 84]" ]
task207-da520d5b33b949b8a2b158dfabac4af5
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, -1, 71, -157, -145], [-159, -19, -158, -128]] Output:
[ "[71, -19]" ]
task207-b0f9e8e943944191ae7405ce97a62c0b
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: [[-2, 65, -16], [83, -55, 81], [60, -193, -104, -59, -86], [46, -54, -36, -128], [-59, -7, 30, -194, -126, 36], [-30, -18, 4, -145, -159], [-16, 36], [-55, 4, -87]] Output:
[ "[65, 83, 60, 46, 36, 4, 36, 4]" ]
task207-4931fdf5a6094e7788be679c95ab5f84
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, -125, 23, 29, 35, -38], [-13, -88, -145, -124, -84], [-68, 14, -41]] Output:
[ "[50, -13, 14]" ]
task207-e7a98f8b239e4723819d8f358badf10f
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, -139, 11, -10], [-28, -157, 16], [-2, -22, 95, -28, -40, 76]] Output:
[ "[11, 16, 95]" ]
task207-4fbdc196db454a3ca98a1c55a7961aff
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, 25, 3, -174, 78, -138, -165], [-62, 58, 12, -60, -15, 35]] Output:
[ "[78, 58]" ]
task207-e9f3dcd376fc4594a27bed909c027815
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, 56, -23], [-19, -178, -59]] Output:
[ "[56, -19]" ]
task207-597805557c244c269c19b549c55ac8ce
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, 67, -75, -129, -17], [-191, -198], [-181, -160, 63, 32], [-12, -190, -160], [91, 11, 63, -136], [-43, -167], [-62, -101, -54, -155], [-42, 1, -98, 90, 88, -169]] Output:
[ "[67, -191, 63, -12, 91, -43, -54, 90]" ]
task207-3e0dd9dafd3a434cb4577d794387bfb9
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: [[-196, -46, -36, 29], [63, -170, 83, -44, -136, -92, 78], [-23, -147, -90, -70], [-81, 33, 38, -194], [-80, 44], [77, -9, -187, -177, -172], [18, -24]] Output:
[ "[29, 83, -23, 38, 44, 77, 18]" ]
task207-e65751ff54f647129216081919c12046
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: [[-195, 70, -139], [60, -30, -37, -4, -26, -4, -142], [61, -127, 88], [-18, -23, 23, -155], [-95, -131, -151, -198, -98, -153, 74], [31, -12, -144, -4]] Output:
[ "[70, 60, 88, 23, 74, 31]" ]
task207-265dae7ba112441881228185f930eeb0
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: [[-128, -166, -187], [-160, -67, -1, -2, -27, -129, 80], [-173, -121], [98, -145, -86, -26, 16], [-126, -15, 41, -147, -129, 46], [-24, -119]] Output:
[ "[-128, 80, -121, 98, 46, -24]" ]
task207-c1298567fdb84690a41af2b0a6e24069
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: [[46, -73, -158], [42, -140, 73, -125, -8, -73], [92, 70, -70, 3, -95], [-72, -43, -83, -82, 88], [-124, -32, -127, -71], [-85, 8, 52, -3, -144, -57], [92, -153, 49], [48, -4, -89, -91], [83, 61, 57]] Output:
[ "[46, 73, 92, 88, -32, 52, 92, 48, 83]" ]
task207-b98d82c183e64052a72cbca1caebf624
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: [[-13, -2, -47, -42], [-83, 29, -169, -51, -39, 90, -35]] Output:
[ "[-2, 90]" ]
task207-eedb17313933428298d8f2b3e8b4281b
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, -106], [-158, -75, -142, -192, -94], [-15, -17, -192]] Output:
[ "[87, -75, -15]" ]
task207-a55b6e268dbb49c98a8d4aff75f6ee14
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: [[2, -34, -18, 14, -118], [-83, -168, -91, -189, -43, -84], [-3, -67], [-99, -66, -24, -133, 4, 14], [56, -148], [-148, 61, -10], [-105, -19, -19, -23], [-11, 97, -151, -180, -160], [-74, -14, -67, -75, -111]] Output:
[ "[14, -43, -3, 14, 56, 61, -19, 97, -14]" ]
task207-a457a4aff33f4c11bd507b8541ac47ea
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, 58, 12, 71, -35, -12, 87], [-30, -117, 95, 29, 17, -120], [-61, -119, -126, 64, -47], [-111, -24], [22, -9, 98, 51, 39, 87]] Output:
[ "[87, 95, 64, -24, 98]" ]
task207-d233edad37c04b9bb02c62f94d7d1469
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: [[62, 99, 64, 0, 34, -52, 11], [-53, 32, -147, 29, -84, -116]] Output:
[ "[99, 32]" ]
task207-af375c5bc4664cc89b6f1ff18c636deb
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: [[-170, -178, 80, 58, -146], [-53, -124], [28, -12, -60, -20, -70, 13]] Output:
[ "[80, -53, 28]" ]
task207-20c846062ca444fd9b9c2eaa18467395
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, -6], [10, 82, -73, -184, 40, -170, -91], [-175, 43, 96, -3, 4, -139, 57], [-67, -15, 88], [-171, -28, -134, -123, -108, 19, -87], [-109, 87, 89, 26, -19, -89, 41], [34, -98, -52, -170, -54, 54, 78]] Output:
[ "[33, 82, 96, 88, 19, 89, 78]" ]
task207-6ba59e02f44b435e8dfee92153fddc42
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: [[-110, 1, 54, -196, -180, -52], [-157, 99, -42, 64, 18], [93, 90, -79, -72, -27, -176], [56, -67, 69, -24, 71], [81, -134, -190, 96, -123, -70], [34, 76, -33], [-73, -18, 15, -5]] Output:
[ "[54, 99, 93, 71, 96, 76, 15]" ]
task207-493fda93e077475b95e054b3a63e4cce
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, -16, -107, 97, -189, -21, -178], [-2, -139], [-94, -200, -83, -73, -177, 33]] Output:
[ "[97, -2, 33]" ]
task207-ef66358c47eb413980aa301009ef14b8
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, -38], [-74, -64, -89], [-113, 74, 59, -86], [28, 57, -77, -99, 95], [-193, -88, -89, 85]] Output:
[ "[-38, -64, 74, 95, 85]" ]
task207-679aeafc0ddf456db891f0667513e3b3
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, -169, -12, -133, -67], [97, -113, -73, 28, -108, -25, -67], [7, -124, -134, 55, -161], [60, -12, 24]] Output:
[ "[14, 97, 55, 60]" ]
task207-874448ba756e49c79267e38b79c27e8b
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, -129, -32, 24, 38], [-75, 64, 25, -15, -51]] Output:
[ "[38, 64]" ]
task207-aa61c2c577434d6fb86125967357b716
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, -57, 15], [13, 68, 59, -77, -177], [-158, 80, -125, -67, 75, -82], [-3, -195, -88, -186], [-80, -122], [5, -75], [-154, -141, -75, 26, -193, -84], [-108, -144, -133, 85]] Output:
[ "[15, 68, 80, -3, -80, 5, 26, 85]" ]
task207-1234ba0cab784265832dd4cd63026c83
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, 75, -169, -170, -44, -185, 48], [-31, -22, -184, -117, -14, -29, 6], [30, 2, -145, 50, 91], [-5, -199, 48, 69, 58, -51]] Output:
[ "[75, 6, 91, 69]" ]
task207-3711ec6a9dc5485685ca16b7509a8496
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, -86, -92, 0], [-90, -5, -142, -182, 99, -191, 28], [15, -107], [-144, -188, 41, -30, -23, -150, -183], [-48, -161, -73], [-50, -178, -80, 17]] Output:
[ "[59, 99, 15, 41, -48, 17]" ]
task207-9adff9d3c0fe4e06af325e231f2cfec6
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, -101, -152, -171], [82, -157, -136], [61, -195, -96, -107, 24], [-91, -57, -182, -36, 97], [7, -2, 73, -154, -100, -90, -143], [-109, -122, -29, 49], [19, -123, -138, -17, -151, 88]] Output:
[ "[-24, 82, 61, 97, 73, 49, 88]" ]
task207-7ad0d5a559ff455aa8cde84d99ea98f7
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: [[-167, 11, 40, 64], [-136, -48, -90, 19, -124], [54, -157, 3, -24, -62, -92, 84], [-67, -110, -11, -111, 40], [-147, 78, -58]] Output:
[ "[64, 19, 84, 40, 78]" ]
task207-16856bc57da44b06aa691a9bb478406a
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, 67, -181, 97], [64, -46], [-83, 41], [-194, -187, -6, -131, -128], [18, -38, 41, -52], [-11, -159, -36, -180, 91], [-80, -185, -198, -164, -173, 0], [62, 70, -125], [61, 86, -142, 38]] Output:
[ "[97, 64, 41, -6, 41, 91, 0, 70, 86]" ]
task207-1a381dfcf4e644e9822b51505b2b880b
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: [[-94, 63, -15], [12, -59, 99, -170, -136], [-7, 68]] Output:
[ "[63, 99, 68]" ]
task207-4a497ba7fe984876a9aece42133dafc1
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, -167], [-193, -96, -92, -67, -33, 83, -95], [-137, -106], [-2, -35, -141], [-179, 98], [-135, -73, -84, -85, -160]] Output:
[ "[-135, 83, -106, -2, 98, -73]" ]
task207-c876d7ce4d504f83abd9bf6894acca06
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, -174, -30, -67], [44, -156, -76, 68, -145, -19, -178], [-18, -104, -19, -63, -15], [-99, 12, -129, 38, 4]] Output:
[ "[-30, 68, -15, 38]" ]
task207-8ad48b682f064f1ca2b704139ba93334
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, -17, 45, -85, -171, -191], [-15, -94, 66, -62, -85, -110], [20, 43, -45, 1, 73, -146, -6]] Output:
[ "[45, 66, 73]" ]
task207-522800114b1448b7a753d25964edb4cd
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: [[-155, -59, -90, -80], [-86, 85, -185, -197, -188], [-3, 49, -103, -28, -30, -186, -149], [-162, -98, -149, 29, -110, -92], [-9, -99, 3, 87, 44, -61, -184], [20, -27, -99, -166]] Output:
[ "[-59, 85, 49, 29, 87, 20]" ]
task207-c2dc3c21043f464fadc334075add8d53
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: [[-159, -44], [-59, -183, 57, -155, -92, 100, -10], [71, -47, -90]] Output:
[ "[-44, 100, 71]" ]
task207-9fdc965fbe92492a981064a0258b5e0f
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, 99, -191, -6, 86, -34], [54, -27, -97, -63, 36], [-36, -84, -64, -65, -95, 96, -199], [-24, -64, -117]] Output:
[ "[99, 54, 96, -24]" ]
task207-165ef6e15d734a67b34c953a566f665a
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, -117, 10, 50, -137, -48, -138], [-56, -27, -163], [-108, -70, 4, -191, -75, -10]] Output:
[ "[50, -27, 4]" ]
task207-4c937e3b991244798d52221a28f57015
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, -6, 42, 74, -171], [-154, -163, -135, -101, -9], [-123, -127, 5, -159, 72, -175, -200], [-63, -137, -185, -40], [-100, -59, -22, -89], [-166, -155, 78, -60, -36, -28], [-79, 35, -159, 85, -10], [25, -4, -17, -21]] Output:
[ "[74, -9, 72, -40, -22, 78, 85, 25]" ]
task207-9c424842b04c4301b837f3be82702c82
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, 78, 100, -60, 77], [-149, -170, -63], [-151, -10, -40, -14, -199], [73, -134, -118], [-115, -156, 82, -31], [44, -33], [-89, 82, -189, 94, -156, 75]] Output:
[ "[100, -63, -10, 73, 82, 44, 94]" ]
task207-ee1d4d29adc8478c9a0a47e843a215d2
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, -147, -192, -96], [55, 94, -72, -144], [-15, -178, 2], [55, -10, -20, 76], [12, -90, -22, -13, -148], [-138, -171], [24, -68, -103, -184]] Output:
[ "[-21, 94, 2, 76, 12, -138, 24]" ]
task207-2a0e9ba7b6954b3d9aa4944ba50bfac8
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, 58, 32, 95], [-200, 76, -12, 22, -69], [95, -172, -119, -100], [-25, -137], [6, -109, 30], [48, 13, -170, -175, 64], [77, -118], [59, 79, 99], [-87, -154, -187, -192]] Output:
[ "[95, 76, 95, -25, 30, 64, 77, 99, -87]" ]
task207-2b25de50285d4666aa95bcdaccb6738a
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, -54], [-47, 14, -86], [-119, -98, -94, -182, 32, -136, 94], [-81, -166, -29, -47, -163, -48], [-183, 56, -187, -28, 57, 7, -73], [-3, -45, -73, -126, -147], [-161, -38, 75, 56], [-163, -135], [11, -30, 43, -85]] Output:
[ "[-54, 14, 94, -29, 57, -3, 75, -135, 43]" ]
task207-050e72a58b8d40deabbca65cf5d42dd7
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: [[-198, -49, -161, -153, 83, -100, -156], [-105, -187, 0, 47], [-36, -111], [-87, -21, 92, -176, -193, -118], [14, 74, -127], [-163, -7, 73, 28, -11]] Output:
[ "[83, 47, -36, 92, 74, 73]" ]
task207-22c012026d6342909349f504ae02ef96
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, 97, -15, -5, 30, 53], [2, -86, -24, -114], [-133, -51], [11, -189, 24, -187, 21, -175], [-105, 38, -30, 93], [-68, -127, -158, 28], [-171, -173, 55, -120], [-30, 41, -196, -8, -26], [-193, 23, 69, 81, -76]] Output:
[ "[97, 2, -51, 24, 93, 28, 55, 41, 81]" ]
task207-efcf746a71c54be187abfb9b0eab2d2e
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: [[-128, -167, 12, -33, -120], [-16, -175], [-97, 34, -3, 41, -72], [50, 39, -128, -26, -96, -58]] Output:
[ "[12, -16, 41, 50]" ]
task207-416574538ee341b39a37ee1acb0445ee
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: [[-198, 19, 96], [-142, 75, 60, -85, -176, -68, -115], [-107, 9, -43], [-139, -89, -47, 76], [-7, 15]] Output:
[ "[96, 75, 9, 76, 15]" ]
task207-c8b812f4b4a94813851dc576440f2004
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, 79, 5, 25, -70], [-153, -136], [-171, -191, -148, -128, -94], [-56, -117, -196, 5], [-51, -113, -199, -147, -174, -108, -141]] Output:
[ "[79, -136, -94, 5, -51]" ]
task207-d9104fe812a44b5790e94bee16c83606
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: [[-34, -67, 37, 50, -92, -59, -58], [-129, 2, -171], [68, -135, -147, 52, -96, -42], [-2, 62, -134, -138, -177], [-144, 77, -180, -116], [41, 49, -163, 58, 72, -164]] Output:
[ "[50, 2, 68, 62, 77, 72]" ]
task207-75ef3b918f22437f9ae4094fa1c89e98