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: [[49, 16, -186], [47, 49, -185, -181], [22, -83, -111], [-1, 91, -36, -5], [-182, -185], [-98, -34, -178, 78, -160], [-3, -135, 71, 89]] Output:
[ "[49, 49, 22, 91, -182, 78, 89]" ]
task207-7b16c6924f6840beb1b9a1a681a7c70a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[10, -121, -54, -1, -69, -181], [83, -37, -173, -81, -42], [-117, 86, -6, -54, -21], [-171, 22, -69]] Output:
[ "[10, 83, 86, 22]" ]
task207-ddf013a4808a482b843e1001db7a3899
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-178, -130, -87, -55, 2, -134, -123], [-128, -37, -147, 20], [-126, -77, 16, -10, -141, -192, 19], [-58, -59, -142, 70]] Output:
[ "[2, 20, 19, 70]" ]
task207-c46b2a6193f944708e7769c6c7b0e697
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -116, 26, -90, 19, -26], [-99, 26, -176, 22, -51, -46, 35], [-104, -39, -9], [-33, -199, -189]] Output:
[ "[26, 35, -9, -33]" ]
task207-cc7660bfad4e4bbc9375ea363ca753d8
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[58, -9, -16], [27, -9, -156, -157, -150], [-117, -32], [-198, -173, -153, -145]] Output:
[ "[58, 27, -32, -145]" ]
task207-8c833d5b31df4dc6a2e5ee0c2b26475f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-6, -196, -155, -178, -24, -127, -44], [23, 5, 17, -30, -8], [-107, -161, 6], [-121, -54, 39, -137, -172, -184], [-26, -192, 61], [-119, 24, 72, 57, 23]] Output:
[ "[-6, 23, 6, 39, 61, 72]" ]
task207-90ea68d7eaa6470189cd6a3aa3932a70
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -54, -102, 86, 30, -114], [37, -54, -51, -149], [67, 32, -45], [-186, -90, -16], [-96, 61], [-108, -55, -63, 98]] Output:
[ "[86, 37, 67, -16, 61, 98]" ]
task207-5e954e8fa8814577bb4ae61c62f6b8ea
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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], [38, 51, -192, -25, 83, -196], [-191, -156, -8], [92, 40], [55, -157, -25, -158], [-51, -143, -144, -38, -82, 44, 91], [-179, -145, -39, 26, 70]] Output:
[ "[-111, 83, -8, 92, 55, 91, 70]" ]
task207-6df848af504546899a5018089dba410e
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -168, 23, -146, -89, -114, 68], [91, 71, -84, -113, 39], [-12, -69, -98, -143, -120], [58, -147, -136, -173, -138], [-65, -98, -114, -100, -189], [-46, -28, -78, -199], [-12, 88], [-200, 99, 83, -15, -73, -63], [86, -11, 2, -142]] Output:
[ "[68, 91, -12, 58, -65, -28, 88, 99, 86]" ]
task207-a271942dae874148acc5831a0e390726
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 31, -128, 67, -30], [88, 70, -187]] Output:
[ "[67, 88]" ]
task207-06300e2b8a134daf8b2943010232141d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -170, 30, -169, -184, -10, -91], [-14, -195, -82]] Output:
[ "[30, -14]" ]
task207-af8fe0d35913437c9936f7015fe05575
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -83, 43, -113, -3, 95, -150], [51, 46, 92, -45, 50, 37], [-31, -44, -179, -176], [-132, -170], [33, 76, 19, -75, 33], [-165, 30, -138, -27, -63]] Output:
[ "[95, 92, -31, -132, 76, 30]" ]
task207-7a95cf1faa824ff882bc43ca81b0059b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -156, -59], [-86, -58, 54, 2, 57, -38]] Output:
[ "[-17, 57]" ]
task207-7f5ebd4969d04631827ae4d7c1591793
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -177, -189], [39, 52, 91, -28, -61, 22, -121], [-76, 27, -100], [-152, -39, -183, -5, -188, -181]] Output:
[ "[88, 91, 27, -5]" ]
task207-65b5f649010146a182da5e5603d18857
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-123, -82, -82], [-18, -60, 58], [86, -177, 43, -62, -200, -133, -108], [-33, -158, -114, -6, 11, -87, 40], [-27, 8], [41, 26, -170, -94, -50, -88], [0, -125, -144, -125], [-8, -76, -143, -46, 64, 23, -124], [-124, -103, 11, 25, 43, 29, 63]] Output:
[ "[-82, 58, 86, 40, 8, 41, 0, 64, 63]" ]
task207-d1f42bdc2e434801b75925b5560756b8
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -84, 14, -184, -198], [45, -79, 78, 63, 58, -146, -171]] Output:
[ "[14, 78]" ]
task207-2254bf7887bf4e06af197c867fbd14a9
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 71, -103], [-98, 40, 75, -26, -67], [49, -172, -124], [6, 64], [-103, 46, -55, -106, -182], [-122, 49, -80, 28, 78, -157], [37, -7, -97, 65, 12, 89, -75], [-90, -139, -161, 31]] Output:
[ "[71, 75, 49, 64, 46, 78, 89, 31]" ]
task207-10c9c19fa81e4646833157f04969b34a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 66, -115, -170, -167, -118, -31], [91, -113, -146], [-150, 42], [-64, -194, -151, 84, -156, 30]] Output:
[ "[66, 91, 42, 84]" ]
task207-bf963d0d4e174a1ba0e1f0b05f87c72b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 56, 71, -86, -175, -82, -24], [-132, -172, -41, -100, 86], [-179, 69, 26, 88, 17], [-101, -107, -51, -77, -122, -120], [-92, 69, -162]] Output:
[ "[71, 86, 88, -51, 69]" ]
task207-2872e34fd94a43a8939cbd6ef31b58c1
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-47, -196, 47, -137, -185, -63, 46], [82, -41, -70], [-37, -147, 87, 36, -158, -108], [32, -180, 85, 14, -59, 64, 19], [-51, 19, -175, -73, -196, -25], [91, -31], [-3, 31, -164], [-100, 63, -79, 99, -151, 80]] Output:
[ "[47, 82, 87, 85, 19, 91, 31, 99]" ]
task207-a8b4324520584246bc322d5970d2746c
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -114], [40, -93, 68]] Output:
[ "[-114, 68]" ]
task207-fc52116bea0e4fb586982f7de4feb13a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -66, -19, -170, -42, -160, 12], [-64, 36, -116], [-52, -81, -6], [-187, -23, -85, -41, 52, -117], [90, 78, -114, -142, -166], [50, -49], [-182, -194]] Output:
[ "[21, 36, -6, 52, 90, 50, -182]" ]
task207-6af793eae54a4fb6b614450a942c81b6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-131, -9, -81, -139, 23, 25], [-55, -154, -137, 83], [-63, -110], [100, -77, -60, -17, -19], [-11, -6, 76, -91, -14, -155], [24, 24, -18, 42, -12], [-4, -41, -114], [-160, 2, -162]] Output:
[ "[25, 83, -63, 100, 76, 42, -4, 2]" ]
task207-4ed1bb77c12a4144a20365d13ef4dae4
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 99, 80], [30, -47, -60, 77]] Output:
[ "[99, 77]" ]
task207-eb4b3312c21c436da244df1f6b25f867
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 90], [33, -200, -184, -146, -70, -127], [-122, -168], [-90, -117, -88, 57], [20, -167, -118, 72, -162, -143], [-72, 36, -70, -64], [100, -10, -40, -52], [-40, -128]] Output:
[ "[90, 33, -122, 57, 72, 36, 100, -40]" ]
task207-47a3ab90ad2f458e9efef03c605285ff
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-173, 33, 21, -10, 76], [-132, -189, -156, 6, -111, 22, -109], [14, 90, -179, -106, 18, -200, 43], [26, -69, -21, -112, -16, 65, 54]] Output:
[ "[76, 22, 90, 65]" ]
task207-00ba88ca96354d8d8978d9df394d3319
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -153, -41, -144, -62, -150], [-178, -50], [100, 17, -18], [-126, -83], [20, -149], [-12, -109], [100, -8, -15]] Output:
[ "[-41, -50, 100, -83, 20, -12, 100]" ]
task207-c63b31d150ba4811add81f5dc191e0cc
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -55, -191, -155, 77, -50, -79], [-182, -144], [-75, -74, 67, -163, -61, 86, 46], [-1, -31, 79, -73, -8], [33, -85, -184, 31, -18, -169], [-64, -2, -175, -194, -167], [-8, 37], [-40, 63, -79, -15, -71, 37], [-191, -15, 90, 23, 59]] Output:
[ "[77, -144, 86, 79, 33, -2, 37, 63, 90]" ]
task207-1a65fa43ad2b475a9dea3bb67750f6d4
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-10, 7], [9, -176], [-45, -34, -61], [49, -167], [23, 31, 20, -192, -166], [-188, -165, -158, -101, -33, -164, -185], [-105, -168]] Output:
[ "[7, 9, -34, 49, 31, -33, -105]" ]
task207-88a67d43a93a406ebd8313d129d8bc1b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -197, -91, -93], [-124, 8, -160, -49, -91, -38], [-28, 97, 9, 93]] Output:
[ "[51, 8, 97]" ]
task207-533914a191884fe1abb7e74da6b39f57
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -164, -2, 61, -59, -8], [96, -48, 12], [-194, -116], [-46, -102, 0, -142, -82, 91, 67], [-33, -2, -164, -154, -193, -119], [-139, 62, 17, 4, -171, 73, -38]] Output:
[ "[61, 96, -116, 91, -2, 73]" ]
task207-dd55140d92004c4f8e3dbba9a15921fb
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-4, 41, 76, -12, -44, 9], [-16, -129], [-124, 30, 84, -124, -136], [-30, 82, -199, 8], [-108, -91, -115, -38]] Output:
[ "[76, -16, 84, 82, -38]" ]
task207-17b7649f5bc5479a99aa08a4c61e29dd
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -160, -87, 37, 35], [-58, -173, 92, -94]] Output:
[ "[37, 92]" ]
task207-1d8de4a00da845e992586a2e901c7f87
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-114, 97, -50, 64, -146, -122], [-107, -123, -196, -185, -6], [-59, -84, -89, -123, 6], [55, -99]] Output:
[ "[97, -6, 6, 55]" ]
task207-79635081140a4a96b1c211e70be071e7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 3, -139, -64, -194, -101], [66, 35, -31, -145, -187], [39, -38, 85, 36], [-18, -134, -174, 78, 75, -128]] Output:
[ "[71, 66, 85, 78]" ]
task207-c6a39f79a4a540278bd639c8511f21a9
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-73, -157, -84, -57], [52, 85, 14, -164], [28, 94, -149], [22, -193], [2, -86, 24, -34, -194, 44, -159], [-121, -61, 36, 60, -57], [-190, -8, -186, -43, -9, -168, 97]] Output:
[ "[-57, 85, 94, 22, 44, 60, 97]" ]
task207-65ceac29825c4f93865b57c699e550da
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-166, -162, -75], [-40, -150], [-133, 54, 43, -98], [28, -8, 93, 37, -136], [-131, 19, 42, 36, -172, -166], [-72, 27, 94, -149]] Output:
[ "[-75, -40, 54, 93, 42, 94]" ]
task207-c1a88ea952b04fbba06adb73f65f2b56
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -180, -24], [-18, -77], [-167, -37, -37], [97, 80], [-91, 18, -122, -8, 90, -125, -162], [96, 74, -57, 89, -171], [66, -113]] Output:
[ "[-15, -18, -37, 97, 90, 96, 66]" ]
task207-0a3cc165140c4a858a5b6ca6714ae683
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -123, -43, -168, -128, -187], [-31, -108, -43, 17], [61, 24, -119]] Output:
[ "[-43, 17, 61]" ]
task207-6fe348964f0a4b32965c504ca9bb7967
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-193, -69, -140, 46, -196, -191, -134], [-45, 43, -144], [-40, 85, -186, -15, -159, 39]] Output:
[ "[46, 43, 85]" ]
task207-9a2cce0d30dc4fe4b159aa3f07739d30
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -177, 78, -111, -46, -92], [-41, -59, -36, -173, -147, -147, -159], [-21, -64, -113, -39, -20], [-193, -39, 8], [53, 66, 87, -54, -5], [88, 34], [69, -173]] Output:
[ "[78, -36, -20, 8, 87, 88, 69]" ]
task207-623b871e0bb244cb83efcfcf97b3ef8d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[97, -135, -83, -157, 30], [-24, 59, 42, -84, 64, -74], [6, 50, -174], [-170, 93, -66, -136]] Output:
[ "[97, 64, 50, 93]" ]
task207-7793327111134a57b63350b380e4db26
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 49], [-132, -152, 32], [65, -27, -151, 47, -132], [96, -93, 10, -150, -103], [-115, -195, -2], [-92, -119, -181, -108, -17], [-148, -32, -142, 78, 73, -64, -125], [67, 97, -30, 94], [9, -156, -193]] Output:
[ "[49, 32, 65, 96, -2, -17, 78, 97, 9]" ]
task207-6e424bfc76d84051aa237601ba2744c6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[98, -189, -65, -125, 48, -83, -9], [-134, -9], [84, 86, -99, -82, -155, -140, -121], [-184, -185, 85, -102, -197, -163, -21], [-69, -136, -143, 57, 100, -166]] Output:
[ "[98, -9, 86, 85, 100]" ]
task207-6c441c08a6ed41f58abf74cca23003f2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -169, 55, 89, 87], [-27, -33, -41, 3], [84, 43, -122, -112, 16, -50], [38, -111, -200, -103, -168, -186], [2, -85], [90, -67, 31, -188, -172, 100], [17, -89, -196, 34], [26, -190, -71], [-123, -63, -161, -167, 0, -146]] Output:
[ "[89, 3, 84, 38, 2, 100, 34, 26, 0]" ]
task207-acbc31ea573b4b7883fd3d7436366b5a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 91, -190], [5, -37], [-69, 84, -198, -76, -125, 50], [-170, 42, -99, 100]] Output:
[ "[91, 5, 84, 100]" ]
task207-f52599476bdd4675ae368e4f13799c94
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-63, -101, -176, -136], [91, 99, -167, 86, -140, -25, -58], [-170, 68, -189], [42, 6, 48, -166, -58, 52, -168], [16, 56, 67, -80, -165, -166]] Output:
[ "[-63, 99, 68, 52, 67]" ]
task207-f9cb3a59817249a7ab2bcc8f79d148cc
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[70, -174, -84, 20, -128, -75], [45, -82, -126, 0]] Output:
[ "[70, 45]" ]
task207-9e1ce84daeae4a389e41c12db184dfd7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -180], [57, -150, -75, -32, -148, 66, 100], [-151, -194, -7, 60, 45, 65, 58], [-150, -95], [96, -74, -198, -159, -190], [18, 58, -94], [97, 99, -22, -59, -26], [-69, -54, -70, 7, 84]] Output:
[ "[-40, 100, 65, -95, 96, 58, 99, 84]" ]
task207-42d4effcaff44b43b014431e19ac5edf
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -49], [-101, -77], [-183, 20, 55], [-129, -74, -149, 35, 3, -51], [58, -49, -11], [95, -178, 72, -71], [53, -26], [-18, -132, 44, -181]] Output:
[ "[42, -77, 55, 35, 58, 95, 53, 44]" ]
task207-e065b1684a8b44c1813970cf151ccc9d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-142, -185, -30, 21], [80, -170, 37], [-182, 85, -168, 17, -91, -63, -134], [51, -182, -169, -146, 81, -141], [-181, -2]] Output:
[ "[21, 80, 85, 81, -2]" ]
task207-b99a44504ff741a4b45cc5ef80dd09ef
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 27, -57, -49], [52, 67, 4, -169, 23, -23, -51], [70, 50], [-143, 18, -80, 97], [-100, -11, -35], [82, 26, -200, -6], [99, 72, -85], [-82, 70, 100]] Output:
[ "[27, 67, 70, 97, -11, 82, 99, 100]" ]
task207-5ac8dab88d71487d99a786a36e0c8d72
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -19, -159, -149], [-177, -166]] Output:
[ "[1, -166]" ]
task207-afd6b684282c4cb78971d2478ae8c9de
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -178], [-82, -14, 39, -166, 21], [55, -119], [77, 54, 87, -86, 58, -102, 48], [-86, -127, -176, 6], [-146, 36], [-158, -194, -183, -8, -182, 73, -163], [-37, 69, -79, 69, -148, -118, -67]] Output:
[ "[-149, 39, 55, 87, 6, 36, 73, 69]" ]
task207-1a5d3bd0c8ca4ac1b727931c19825efc
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-4, -199, -162, 33], [25, -194, -157, -39, -122, 100, -108], [-25, -181, 74, -116, -119], [69, -124]] Output:
[ "[33, 100, 74, 69]" ]
task207-e7dd3fdc59c74caabfafb23841273800
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -6, 66, -94, 48, -144], [-157, 37, -155], [-156, -74, -128, -200, -9]] Output:
[ "[66, 37, -9]" ]
task207-a7c1408e7702433fa647af41b7847192
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[22, 51, 17, 93, -53, 19], [-86, -139, -159, -120, -130], [-2, 29], [0, 85, -17, -135, -73], [-165, -61, -161, -194, -190, -87, 44]] Output:
[ "[93, -86, 29, 85, 44]" ]
task207-e6433e2a04a447ad87b2d070c17d6556
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-112, 75, -10, -77, 14, -139], [-1, -78, -187, -19, -128], [-9, 31, -134, 46], [50, 88, 86, -85], [74, -188, 36, -159, -73, -75], [-20, 50], [87, -75]] Output:
[ "[75, -1, 46, 88, 74, 50, 87]" ]
task207-2e965813eeb24e12aca6e42eef3bf310
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -178, -8], [-125, -10, 86, -167, 16, -36, -103], [-157, -194, -162, 55, 77, 74, 75], [-125, 84, -125, 82, 71]] Output:
[ "[90, 86, 77, 84]" ]
task207-da4d9c45aeec409c9f156e689f4e8691
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -187, -86], [43, 89], [-26, -50, -66, -115, -123], [51, -65, -164], [87, -143, -124, -53, -102, -185, -84]] Output:
[ "[-86, 89, -26, 51, 87]" ]
task207-dda581d233854ea1bfa8121b3ae18368
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 20], [36, -36, -177, -145], [90, -26, -6, 12, 94]] Output:
[ "[20, 36, 94]" ]
task207-95fba5931f254ef9b6ad6b3603f3fa4f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-22, -142, -132, -149, 39, -118, 50], [-135, 63], [38, -27, 43, 20], [-78, -101], [-81, -42, -109], [64, 83], [18, -180, 51, -156, -193, -198, -41], [-118, -101, -127, -148], [-141, -200, 66, -53, 1, -114, -19]] Output:
[ "[50, 63, 43, -78, -42, 83, 51, -101, 66]" ]
task207-2dd1e9825a37454eae95ad36648e51b1
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 82, -165], [-79, -25], [-81, 83, -10, -121, -43], [-118, -97, 32, -6, 37, 21], [-59, -11, -35]] Output:
[ "[82, -25, 83, 37, -11]" ]
task207-d30bc42bff4a4b98b65b65d8d5194fd0
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 67, -60, -36, -127, 80], [93, -138, -75], [-133, -110, 66, -171, -175, 45, -144], [45, 94], [-196, -66, -186, -104], [-174, 11, 80, -98], [-172, 90, 4, -117, -15]] Output:
[ "[80, 93, 66, 94, -66, 80, 90]" ]
task207-e3635d3509a44842a8612e2694f75a24
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 9, 87, 22], [-185, -164, -191, -24, -28], [0, -138, 66]] Output:
[ "[87, -24, 66]" ]
task207-92ffa9f6531a46978beff86762f441a9
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[37, -42, -113, -24], [-123, -170, 67, 33, -140], [-55, -35, -148, -161, -134, 29], [-196, -13, -21, 54], [96, -146, 98, -159, -125]] Output:
[ "[37, 67, 29, 54, 98]" ]
task207-7a76f842db9f46a2bf15253abd079e9c
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -153, 6, 22], [-170, -13, -120, -83], [20, -54, -193, -101], [7, 92], [-25, 100, -154, -30, -135], [13, -180, -117, -107], [6, -165, -63, -95, -197, -190, -113], [-92, -160, 88, 9, -185, -178, -36], [-154, -176, -126, -4, 71]] Output:
[ "[89, -13, 20, 92, 100, 13, 6, 88, 71]" ]
task207-c43a973daace4b1faa15e2dacade0587
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -4], [35, 48, -24, 50], [-55, -185, -63, -90], [-27, 88, -151, 41, -155, 98, -76], [-108, 19, 70, 67], [-102, -38, -186], [-156, -11, -11, -39, 64], [-115, -169, 55, 87, 6, 39], [-135, -139, -81, -100, -199]] Output:
[ "[-4, 50, -55, 98, 70, -38, 64, 87, -81]" ]
task207-6f44e939678e42aba44edbb6738bd0e7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -94], [4, -161, -152, 69, -78], [-65, -141, 46, -157, 62, -141, -155], [-5, -133], [-186, -91, -200], [51, -1, -138, -132], [-36, -160, -146, -171], [-37, -48], [92, 72, -39, -181, 62, -189]] Output:
[ "[-34, 69, 62, -5, -91, 51, -36, -37, 92]" ]
task207-1d312bb4d9914ee48c5770d2305b80b3
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[57, -66, 93, -150, 90, 10], [-30, -32, -72, -62, -181], [-41, 28], [46, -120, 42, 21], [-132, 68, -174, -150, -118, 59, -166], [-28, -137, -48, -157, -22, -124, 39], [-193, -7, -2, -91]] Output:
[ "[93, -30, 28, 46, 68, 39, -2]" ]
task207-e191bbedc1504b54b6782c87d5e6ac3e
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[80, -119, 40, -162, -139], [-28, -167, 74, -65, -168, -64], [28, 92, -40], [-64, 69, -27, -22, -129], [-24, -154, -181, -105, -185, -147], [-118, -156], [70, -96, -124, -54, -84, -161, 22], [-102, -86, -89, -126]] Output:
[ "[80, 74, 92, 69, -24, -118, 70, -86]" ]
task207-3afd9ba8715a4e618c55bda30503f2b2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-184, 15], [-154, -67, -16, 27, -2]] Output:
[ "[15, 27]" ]
task207-009fb6df7fe545ebb06651a3a1f0d58a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-197, -114, -133, -66, 88, 85], [-166, 51], [-149, 10], [-197, -58, 96, -66, 16, -85], [-197, 47, -170, 52, -4], [-54, 47, 22, -71], [-136, 43, -196, 58, -129, 63, -22], [72, -132, -92, -88, 90]] Output:
[ "[88, 51, 10, 96, 52, 47, 63, 90]" ]
task207-1ff391d56a314302aa50b20f9ba8eb6c
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 62, -134, -21, 6], [20, -73, 44, -74], [-86, -40, -153, -128, -170, -54, 73], [-59, -74, -178, 17, 4, -162], [-154, -17, -21, -49], [-49, -126, 40, -3, 87, -190, 18], [-54, 41]] Output:
[ "[62, 44, 73, 17, -17, 87, 41]" ]
task207-aeb4692387824ec88adaa67005d7e82e
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -89, -123, -118, 59, -178, -98], [-144, -14]] Output:
[ "[59, -14]" ]
task207-296dd0723e464241a845e105aa9a16cd
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -175, -42, -28, -125, -128], [-17, 70, -140], [12, -31]] Output:
[ "[16, 70, 12]" ]
task207-20762e99e13c444296d74cd235db42a1
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -87, -33, -16, 22], [70, -120, -28, 0], [77, -69, -172, -145]] Output:
[ "[22, 70, 77]" ]
task207-781e0742d0014e829ed479dd12343f66
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-150, -29, -166, -81, -193, -60], [-118, -17, -5]] Output:
[ "[-29, -5]" ]
task207-e77f02bd7f7d46f8bfc12e27ac5d4a2d
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 60, 100, 85, -114, -113], [44, -77], [64, -164, -23], [-136, -10, -144, -38], [-118, -55, 22, 76, 79, 96, -16]] Output:
[ "[100, 44, 64, -10, 96]" ]
task207-25da44ea98024e15aaf1b7e8aae0090f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -189, -6, -184, 74, 18], [-160, -185, -30, -97, 40, -60, 57], [-123, -53, -139, -124, 25, 34], [-16, 81, -120, -64, 11, -185], [-52, 42, -157, -79, 36, 27], [-101, -57, -150], [-20, -143, -169, -114, -76, -127], [-130, -90], [68, -169]] Output:
[ "[74, 57, 34, 81, 42, -57, -20, -90, 68]" ]
task207-a2c8904fe84545e098e240df96d5d16a
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-187, -131, -115, -37, -149, 21, 68], [-173, -82, 14, 81, -134, -19, -89], [-99, 22], [-78, -57, -11, -185, -98, -129], [71, -110, -36, -99], [-78, -37, -55, -22, -15, 95], [75, -193, -78, -110], [-196, 77]] Output:
[ "[68, 81, 22, -11, 71, 95, 75, 77]" ]
task207-8a33195870ee4efdac18e83db9d83016
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 72, -163, 73, -191, 87, -141], [-155, -164, 78, -147, -88], [-153, -80, -21], [44, -186, -119], [-146, -159, -18, -183, 45, -182, -198], [-120, -92, -154, 87, -171, 57], [-143, -108, -155], [-96, -96, 94], [67, 93, -132, -125, -158]] Output:
[ "[91, 78, -21, 44, 45, 87, -108, 94, 93]" ]
task207-78190c88725a45a98e750834124ba784
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-107, 20, -117, -199, -29, -69], [-26, -6, -86, -122, -78], [-65, -39, 83], [39, -157, -145, -2, 43, -172]] Output:
[ "[20, -6, 83, 43]" ]
task207-a474bab2f87d47dbafaab0b44e03041c
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-78, 14, -181, -194, 36], [-128, -60], [48, 35, -183, 53], [-75, -36, 17, 71, -77], [-117, -30]] Output:
[ "[36, -60, 53, 71, -30]" ]
task207-c70e8796343a43c6a345976b405cc06b
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-168, 74, -86, 15, 36, -84], [-44, 79, 17, 61], [-112, 47, 55, -164, -153], [73, -185], [-144, -21], [25, 81, -13, -15, -117], [40, 16, -130, -83, 24], [-148, -177]] Output:
[ "[74, 79, 55, 73, -21, 81, 40, -148]" ]
task207-1147856a0f714dc792d328d766e3116f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-93, 56, -145, -106, -133, -20, 63], [95, -35, -150], [-71, -24, 37]] Output:
[ "[63, 95, 37]" ]
task207-d00e04428b034445a6fb079b99b52242
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -85, 38, -82, 24, -165], [7, -123, -175, -193, 66, -76, -109]] Output:
[ "[38, 66]" ]
task207-b3f6efac9ac54fb2bcf204a42c245094
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -30, -96, -29, -26], [48, -123, 79, 60], [-8, -41, 76, -136, -42, -188, 98], [8, 99, -64, -163, -128, 8]] Output:
[ "[19, 79, 98, 99]" ]
task207-0a96a4c228f24190b6ced961f4ea0919
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -78, -66, 72, 5, 99, -79], [72, -77, -167, -30]] Output:
[ "[99, 72]" ]
task207-f121494aaf184d5b915df53a02af10e1
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 12, -59, 9, 100, 83], [-187, 40, 97, 8, -29], [77, -190], [-153, 11], [17, -89, -75, 52, -112, -52, 51], [-60, -103, -79, 74], [-86, -4, 55, 99], [-69, -25, -52], [8, -62]] Output:
[ "[100, 97, 77, 11, 52, 74, 99, -25, 8]" ]
task207-dc71fbeaf0314d4d8230a5c9aa4317b3
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -84, -113], [82, -166], [74, 60, -108, -93, 75, -131, -198], [73, -35, -37, -12], [54, -32, -46, -194, -2, -197, -107], [-138, 52], [-129, -177, 33, -44, 19, -156, -154], [66, 0, -163]] Output:
[ "[-51, 82, 75, 73, 54, 52, 33, 66]" ]
task207-6882d18696624e24bead962deb71542f
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -77, 69, -165, -145, -39, -99], [-93, 35, -140, -131, 9], [49, -139, -173, -16], [-81, -186, 83, -190], [-26, -151, -161, -28, 7, -194], [-175, -31, 63, -98, -23], [-98, -176, 32], [-110, 12, -115], [-168, 15, -25, 49, -124, -11]] Output:
[ "[69, 35, 49, 83, 7, 63, 32, 12, 49]" ]
task207-be272bfcc51249cdb598246da273afc2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, 25, -93], [-170, 16, -114, -81, -76, -11], [-192, 25, -99, 41, -133, -139], [65, 23], [-193, 25, 49, -75], [20, 21, -77], [-130, -60, -132, 26, -184], [-165, -12, -187, -88, -157, 26, -87], [40, -116]] Output:
[ "[75, 16, 41, 65, 49, 21, 26, 26, 40]" ]
task207-ae952db8c3f74b7daf3ea5cb81f389e6
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -144, 26], [-143, 64, 16], [-75, 57, -33, -82, 27, -27], [50, -196, 64, -9, -130], [31, -14, 36], [24, -7, -182, -188]] Output:
[ "[26, 64, 57, 64, 36, 24]" ]
task207-8354000d585b4e46bda79e99581a2fa7
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-173, 93, 7, -137], [-24, -107], [98, -156, -29, 75]] Output:
[ "[93, -24, 98]" ]
task207-112b82c1fac64028a7ad7576fa21f527
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-47, 70, 20, -85, -27, 43, -199], [-197, 18, -63, -36], [-46, -98, -200, 83], [93, 99], [55, -166, -17, -88, -95, -135, -163], [-192, -151, 63, -77, -54], [-119, -18, -25]] Output:
[ "[70, 18, 83, 99, 55, 63, -18]" ]
task207-b4e1a820ba064b24bcbf2b8351e2eea2
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-181, -180, 67, -144, 81], [-111, -185, -90, -148], [-57, 8, -160, -124, -144], [-127, 69, -3, -93, -101], [57, -173, 91, -38], [-75, -50, 8, 83]] Output:
[ "[81, -90, 8, 69, 91, 83]" ]
task207-0af89cc169d64d88a14ce790e85d9aba
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -10], [-44, 22, -89], [83, -197, -135], [94, 7, -166, -111]] Output:
[ "[77, 22, 83, 94]" ]
task207-7d035d2e2a9941a9857e556915767198
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 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, -74, -179, 70], [-126, -115], [-27, 20, -154, 19, -64, 96, -151], [61, 77, -53, 62, -174, -168], [-51, -133]] Output:
[ "[70, -115, 96, 77, -51]" ]
task207-5da1dee80a684e53be41a2e1849e66d3
Definition: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists. Positive Example 1 - Input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]] Output: [5, 9, 3, 7] Positive Example 2 - Input: [[1, 6, 3, 7], [7, 3, 1]] Output: [7, 7] Negative Example 1 - Input: [[5, 9, 9], [8, 9], [11, 2, 1, 4, 7], [4, 6, 4, 1]] Output: [11] Negative Example 2 - Input: [[3, 5, 9, 4, 9], [1, 8, 4, 3], [3, 0, 8] Output: [3, 1, 0] Now complete the following example - Input: [[-151, -194, -174, -3], [-4, 45, -17], [-163, 6, -63, -83]] Output:
[ "[-3, 45, 6]" ]
task207-8cd3767b8a564ce8a5b58b64b7be4b30