inputs stringlengths 326 1.23k | targets stringlengths 7 53 | _template_idx int64 0 9 | _task_source stringclasses 1
value | _task_name stringclasses 1
value | _template_type stringclasses 2
values |
|---|---|---|---|---|---|
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Ex Input:
[[-73, 76, -100, -143], [-74, -141], [73, -82, -103, -88, 70, -159, -124], [-110, -78, 44, 57, -61], [41, -83, -173, -44, -181]]
Ex Output:
[76, -74, 73, 57, 41]
Ex Input:
[[-154, -145, 28, -154, -52, -41], [-198, 0]]
Ex Output:
[28, 0]
Ex Input:
[[-59, 72, -192, -97], [79, -39, -4, 89], [76, -5, -99]]
Ex Output:
| [72, 89, 76]
| 1 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[-22, -113, 66, -190], [-46, -110, -136, -8], [-2, 82, -131, -121], [-175, 27, -167, -178, 61, -20]]
A: | [66, -8, 82, 61] | 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[-15, 9, -181, -172, -74], [-164, -77, 1, -65, 29, -113, -163], [-189, -106, 22, -40, -50, -48], [-77, -61, 16, 85, 36, -45, -26], [2, 77, -77], [-146, -87, 75, -163, -147]]
[9, 29, 22, 85, 77, 75]
[[-194, -30, -77, -21], [35, 86], [-189, -19, 29, -169, -32, -38, -25], [100, -144, 85]]
[-21, 86, 29, 100]
[[-13, -100, -128, -132, 77, 28], [-7, -23, -111]]
| [77, -7]
| 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example output: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[-96, -173, -26, -186, -70, -165, -26], [-60, -139, 80, -104, -24, -183]]
A: | [-26, 80] | 3 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Input: Consider Input: [[-100, -195, -66], [-6, -45, -30, -34, -43], [91, -127, -170, 11], [-127, 69, -126, -88], [-195, -24, -70, -91], [72, -1, -139, -122, -189]]
Output: [-66, -6, 91, 69, -24, 72]
Input: Consider Input: [[51, 10, -181, -96], [-40, 69, 46, -116, 53], [-135, 92], [-151, 35, -65, 52], [23, -125, 82, 57, -57], [-185, -94, -73, -131, -191, 70, -154], [9, 65, 41]]
Output: [51, 69, 92, 52, 82, 70, 65]
Input: Consider 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]
| 2 | NIv2 | task207_max_element_lists | fs_opt |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Why? Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input: [[-23, 34, -61], [-26, 79, -146, 14], [75, -140, 42, -32, -113, -133, 91], [-62, -117], [86, 40], [-44, -19, -41, 50, -108], [-15, 38, 96, -94], [8, -140, -91]]
Solution: | [34, 79, 91, -62, 86, 50, 96, 8] | 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example output: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[29, -34, -151, 31], [-191, -14, -62, -85, -172, -101, -89], [69, -84], [51, -166, -38, -177, -6, 41, 30], [-148, -93, -73, 100, 53]]
A: | [31, -14, 69, 51, 100] | 3 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example solution: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[-188, -200, 14, 99, -188, -86], [-45, -10, -163, -29], [-138, -34, -182], [-155, -160, 94, -173, 91, -173, 94]]
| Solution: [99, -10, -34, 94] | 5 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Q: [[-20, -79, 59, 63, -135, -96, -190], [-42, -144, -87, -33], [-109, -128, 25, 43, -50], [49, 68, -161, -180]]
A: [63, -33, 43, 68]
****
Q: [[5, -85, -188], [44, -175, 17, 82, 16], [-91, -101], [-172, -71, -147], [-90, 46, -27, 25, -122], [-23, -83], [-70, -18, 68, -98, -130, -177, -131]]
A: [5, 82, -91, -71, 46, -23, 68]
****
Q: [[72, 43, 37, -195], [-123, -22, -117, -33, 67, 77, -163], [-198, -176, -16, 22, 44, 74, -90], [-10, -191, 5, 24, -69], [-168, -177], [-8, -173, -17], [-195, -46, 64, 15], [0, 59, -25, -95, -22], [45, -104, -59, -136]]
A: | [72, 77, 74, 24, -168, -8, 64, 59, 45]
****
| 4 | NIv2 | task207_max_element_lists | fs_opt |
Part 1. Definition
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Part 2. Example
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Answer: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Part 3. Exercise
[[-72, -37, -51, 45], [-102, 17, -162, -122, -145], [-40, 31, -71, 89, 92, -3, 16], [-155, -190, 12, 3], [-2, -150, -94, 28, -52, 7], [-150, -106, 8], [-102, -174, -93, -186, -194]]
Answer: | [45, 17, 92, 12, 28, 8, -93] | 7 | NIv2 | task207_max_element_lists | fs_opt |
Detailed Instructions: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
See one example below:
Problem: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[46, 75, -177, -153, -101, 36, -77], [50, -35], [-131, 36, 92, -54, 14]]
Solution: | [75, 50, 92] | 4 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[-7, -101, -163, 71, -158, 72], [72, 79, -27, -34, -54, 77, -130], [-130, 51, -143, -172, 38, 18, -135], [-197, -198], [-156, -135, -151, -89], [-58, -128, -75, -161, 72, 15, -40], [-148, -98, -35]]
A: | [72, 79, 51, -197, -89, 72, -35] | 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Q: [[77, 52], [-25, -37, 13, 77, 88, -15, -158], [60, 86, -7], [78, 7, -132], [99, -94, -185, -158], [34, -90, 83, -81], [-21, -63, -161, 47, 12, 95], [59, 29], [-45, -57, 96, -170, 76, -70]]
A: [77, 88, 86, 78, 99, 83, 95, 59, 96]
****
Q: [[-23, 46, 40, -162, -97], [0, 78, -38, -80], [1, 79, 15, -7, -40, -88], [-117, -22], [96, -80, 62]]
A: [46, 78, 79, -22, 96]
****
Q: [[46, 75, -177, -153, -101, 36, -77], [50, -35], [-131, 36, 92, -54, 14]]
A: | [75, 50, 92]
****
| 4 | NIv2 | task207_max_element_lists | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Output: [5, 9, 3, 7]
Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input case for you: [[86, 53, -171], [-148, -143, -147], [-44, -42, -12, -167, -26, 13], [3, 42, 0, 20, 44], [0, -175, 18, -161, 22, -105, -25], [-89, -49, -166], [-5, -168, -14, -12]]
Output: | [86, -143, 13, 44, 22, -49, -5] | 1 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example Input: [[-89, -107, -120, -129, -109, -16], [-66, -180, 68, 29, -113, -92], [-102, -113, -115, 80, -194], [-187, -134, -85, -174, -133], [-15, -124, -94, -186, -175, -54], [-95, -9, -56, -18, 94, -94, -56], [69, -24, 18, 17]]
Example Output: [-16, 68, 80, -85, -15, 94, 69]
Example Input: [[-194, -30, -77, -21], [35, 86], [-189, -19, 29, -169, -32, -38, -25], [100, -144, 85]]
Example Output: [-21, 86, 29, 100]
Example Input: [[-150, 87, 69, 2], [-154, -32], [-103, -152, -123, -186, -56, -111, -98], [-91, -108, 12, -188, -82, -160, 6], [-31, -175, -84, 53], [-113, -153, 79, -108, -168, -154, -139], [-180, 17, 54, -174, -190, 97, 30]]
Example Output: | [87, -32, -56, 12, 53, 79, 97]
| 3 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example solution: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[49, 56, 7, 60], [57, 22, 27, 98], [-78, 66, -105, 5], [1, 24, 17, 90, -166], [-192, -192, -153, -2, -25, -113, 87], [-51, 19], [-14, 48, 29, -62, 30, 94], [-193, 98, -92, -2, 38], [-70, 59, -10, -120]]
| Solution: [60, 98, 66, 90, 87, 19, 94, 98, 59] | 5 | NIv2 | task207_max_element_lists | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Output: [5, 9, 3, 7]
Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input case for you: [[-112, -185, 83, -104], [75, -109], [-44, -147, 18, -36, -12, -98, 86], [-192, 90, -11, -68, -55, -176], [-64, 50, -56, 54, 14], [-112, -77], [-91, -114, 0, 9, -186, 0, 100], [-150, -67, -18, 44, -15, -61, 1]]
Output: | [83, 75, 86, 90, 54, -77, 100, 44] | 1 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution is here: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this: [[-50, -134], [14, 92], [-52, -36, -95, -84, 93, -92], [-180, -51, 80, 14, -45, 79], [-13, -116, 0], [-105, -180, -105, -199, -17, -188, 38], [-62, -39, -83, 46], [-156, -164, 48, -153], [-99, -62, -148, 81, -158, -12, 37]]
Solution: | [-50, 92, 93, 80, 0, 38, 46, 48, 81] | 6 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[-162, -197, 57, -149], [71, -127, 21, -120, 56, -18, 82], [-18, 1, -152, -113, 5, -53], [-138, 28], [70, -65]]
[57, 82, 5, 28, 70]
[[44, 37, -10, 4, -109, 87], [-62, -48, 51, -171, -162], [-41, 10, -49, -32, -116], [89, 100, -192, -33, -41, -17, -19], [86, 16], [-92, -131, 2, -25, 10, -84, -124], [-119, 77], [58, 23], [-103, -64, -166, 74]]
[87, 51, 10, 100, 86, 10, 77, 58, 74]
[[-30, -12, -96, -200], [-39, -136, -152, 79, 47], [-86, -70, -189, -10, -17, -162, -159], [1, 9, 94, -11, -159, -20], [-198, -81, 92, -145], [-71, -107, -144, -177, -24], [-39, -54, -6]]
| [-12, 79, -10, 94, 92, -24, -6]
| 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[16, 8, 48, 100, 89, -190], [-26, -55, -125, -32, -18], [-153, -171], [-110, 59, 2], [7, -126, -193], [-27, -195, 4, 41], [-53, 87, -110, -131]]
A: | [100, -18, -153, 59, 7, 41, 87] | 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[EX Q]: [[72, 43, 37, -195], [-123, -22, -117, -33, 67, 77, -163], [-198, -176, -16, 22, 44, 74, -90], [-10, -191, 5, 24, -69], [-168, -177], [-8, -173, -17], [-195, -46, 64, 15], [0, 59, -25, -95, -22], [45, -104, -59, -136]]
[EX A]: [72, 77, 74, 24, -168, -8, 64, 59, 45]
[EX Q]: [[-188, -197, -169], [-122, 14, -180, -164, 67, 0, 29]]
[EX A]: [-169, 67]
[EX Q]: [[21, 71, -103, -69, -95], [-139, -151, 75, 98, -197], [-6, -136], [-77, -160, -158, -182], [-193, -24, -49]]
[EX A]: | [71, 98, -6, -77, -24]
| 6 | NIv2 | task207_max_element_lists | fs_opt |
Detailed Instructions: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
See one example below:
Problem: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[1, 68, 31, -19], [-15, 27, -86, 6], [52, -57, -142, 80]]
Solution: | [68, 27, 80] | 4 | NIv2 | task207_max_element_lists | fs_opt |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Why? Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input: [[-87, 47, -21, -102, -95], [97, 31, -35, -7, -162], [-39, -49, 97], [81, -29, 45, 90, 83, -188], [-167, -20], [11, -98], [-24, -77], [-78, 28, 29]]
Solution: | [47, 97, 97, 90, -20, 11, -24, 29] | 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[-157, -89, -63], [-97, 82, -159, 40, -15], [-25, 52, 24, 79, -114, 16, 54]]
A: | [-63, 82, 79] | 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
--------
Question: [[10, -182, -172, -154, 42, -42, -159], [10, -7, 32, -26], [-79, -77, -179], [57, 21, -139, -114, 23, -177, 24], [-122, 57, -110, 84], [42, -107, -190, -73, -184, -186]]
Answer: [42, 32, -77, 57, 84, 42]
Question: [[51, -67, -81, -30, 67, -10, -110], [-187, 85], [-127, -137, -194, 90, -185, -149, -163], [-54, -34, -105, -77, -65, 76], [-121, 81, -112, -28], [-65, 97, 98], [8, -183, 72, -81, 15, 94, 32]]
Answer: [67, 85, 90, 76, 81, 98, 94]
Question: [[-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]]
Answer: | [-111, 83, -8, 92, 55, 91, 70]
| 7 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[Q]: [[-122, -18], [-126, -168, -62], [-185, 20, -166, 59, -185, -181, -174], [-32, -105, 14, -182], [91, 95], [-12, -124, 4, -192, -101, -200, -69], [-49, -113, 94, 50], [23, -25], [92, -139, -21, -136]]
[A]: [-18, -62, 59, 14, 95, 4, 94, 23, 92]
[Q]: [[-53, -26, -156, 87], [-73, -173, 18, -40, -175, 99], [-171, -75, 15, 18, -90, -162, -104]]
[A]: [87, 99, 18]
[Q]: [[-89, -145, -108, -112], [-39, -22, 10], [-19, -110, -78], [-126, -33, -127, 28, 82, 100], [-172, -78], [-148, -124, 52, -21, 72], [-47, -166, 70, -167, -105, -197], [-19, 93], [-104, -123, 49]]
[A]: | [-89, 10, -19, 100, -78, 72, 70, 93, 49]
| 5 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Input: Consider Input: [[-27, -28, 59, -2, -90, 50, -81], [9, 83, -62, 32]]
Output: [59, 83]
Input: Consider Input: [[-53, -85, 38, -82, 24, -165], [7, -123, -175, -193, 66, -76, -109]]
Output: [38, 66]
Input: Consider Input: [[-148, 31, -194, 43, -103, -187, -150], [10, -3, 85, -57], [-102, 39, -179, -125, 49]]
| Output: [43, 85, 49]
| 2 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[-181, -160, -10, -6, -128], [78, -145, -191, -36]]
[-6, 78]
[[-110, 98, -104, -154, -75, -61], [-194, 43, -85, 79, -95], [-112, -183, -70, 97], [-95, 65, -100, -127], [-185, 71, -108, -93, -1], [-48, -114, -149, 43, -101], [-72, -135, -135, -137]]
[98, 79, 97, 65, 71, 43, -72]
[[19, -30, -96, -29, -26], [48, -123, 79, 60], [-8, -41, 76, -136, -42, -188, 98], [8, 99, -64, -163, -128, 8]]
| [19, 79, 98, 99]
| 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[91, -82, -158, -188], [-148, -168, 25, 53], [-87, 82], [-176, -136, -24, -72, -9, -12]]
[91, 53, 82, -9]
[[-111, -54, -11, -97, -137, 82], [63, -197, 31]]
[82, 63]
[[-48, 68, -52, -49, -112, -163, -151], [0, -6, 87, -200], [-29, 83, -96, -184, -31], [17, -47, -49, -194], [57, -111, -60, 31, 41, -98, -85], [-61, -19, -66, 55, 16]]
| [68, 87, 83, 17, 57, 55]
| 0 | NIv2 | task207_max_element_lists | fs_opt |
Teacher: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Teacher: Now, understand the problem? If you are still confused, see the following example:
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Reason: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this instance: [[-16, -47, 60, -76, 49, -150], [-194, -22, 42], [-180, -127, -120, -192, -170, -57, -117], [-62, 95], [-145, -108, -62], [54, -121, -172, -11, 47]]
Student: | [60, 42, -57, 95, -62, 54] | 2 | NIv2 | task207_max_element_lists | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Output: [5, 9, 3, 7]
Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input case for you: [[-148, 31, -194, 43, -103, -187, -150], [10, -3, 85, -57], [-102, 39, -179, -125, 49]]
Output: | [43, 85, 49] | 1 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Let me give you an example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
The answer to this example can be: [5, 9, 3, 7]
Here is why: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
OK. solve this:
[[-193, 56, 90, -24, -195], [-180, -69, 33, 77]]
Answer: | [90, 77] | 8 | NIv2 | task207_max_element_lists | fs_opt |
Part 1. Definition
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Part 2. Example
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Answer: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Part 3. Exercise
[[-153, 73, -153, -169, 8, -22, -188], [-46, -140], [81, -6, -44, -143, -162, -29, 100], [-190, 91, -190], [-101, -109, 43, -136, -62, -44, -139]]
Answer: | [73, -46, 100, 91, 43] | 7 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example Input: [[21, 93], [-100, -173], [-188, 27, -86, 50], [-33, 18, -47, -166, 56, -97], [23, -41, 20, -39, -99, 90], [-87, -177, -106], [45, 74, 10, -13, -153], [77, -85, -15, 25, 82], [48, -39, -19, 49, 19, -79]]
Example Output: [93, -100, 50, 56, 90, -87, 74, 82, 49]
Example Input: [[-154, -106, -158, 36, 91, -3, -98], [-49, -85, 23, 14, -170, -169, -170], [-177, -51, -192, -57, 64, 83, -173]]
Example Output: [91, 23, 83]
Example Input: [[65, -57, 8, -30, -95], [-27, -56, -163, -192, -155], [-164, 94, -93], [-6, -141, -18, -45, -111, 16, -77], [49, -148, -150, -50]]
Example Output: | [65, -27, 94, 16, 49]
| 3 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Input: Consider Input: [[-109, -49, -71, -4], [37, 18, -37, -47, 21, 0, -43], [90, -154], [33, 60, -7, -153], [-46, 9, 52, -84, 30, 55], [53, 14], [83, 72, 56, -46]]
Output: [-4, 37, 90, 60, 55, 53, 83]
Input: Consider Input: [[-134, -121, 72, 82, -12, -28], [67, 87, 98, -58, -57, 6, 84], [-46, 76, -179, 21, -132, -46], [12, -67, -19, -46], [-62, -22, 58, -139, -39, -118], [-5, -170, 85, -75, -126, 53, -63], [9, -82, 7], [-88, -111, -81, 86, -17, 36, -160]]
Output: [82, 98, 76, 12, 58, 85, 9, 86]
Input: Consider Input: [[-157, -89, -63], [-97, 82, -159, 40, -15], [-25, 52, 24, 79, -114, 16, 54]]
| Output: [-63, 82, 79]
| 2 | NIv2 | task207_max_element_lists | fs_opt |
Teacher: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Teacher: Now, understand the problem? If you are still confused, see the following example:
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Reason: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this instance: [[51, -76, 58], [-20, -38], [-174, -126], [-140, 5, -46, 8, 84, -129, -3], [-104, -54, -169, -77, -14, -21], [-27, -170, 61, -123, -35, 18]]
Student: | [58, -20, -126, 84, -14, 61] | 2 | NIv2 | task207_max_element_lists | fs_opt |
Detailed Instructions: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
See one example below:
Problem: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[-117, -156], [70, 47, 79, -112, -101, -155, -99], [-48, 60, 63, -124, -15, -57, -165], [16, -29, -112, 18, -104, 64, 47]]
Solution: | [-117, 79, 63, 64] | 4 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example solution: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[35, 47], [-194, 78, -89], [-123, 40, 34, -35, -81, 31]]
| Solution: [47, 78, 40] | 5 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example input: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example output: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[41, -92, 15, 25, 60, -28, -15], [69, -167, 14], [17, 92, -68, -163, 64], [-52, -151, 67, 38, 76, 71, 68], [-100, -198, 66], [-38, -98, -183, -20, -165, -193, -108]]
A: | [60, 69, 92, 76, 66, -20] | 3 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[6, -79, 91, -90, 27, -177, 63], [-43, -180, 39, -147, -75, 63, 9], [-93, 46, -19, 4, -62], [59, 19, 92, -7, 81, 13, -178], [-50, 6, 95, -132, 96, -58], [90, -45], [97, 100, -124, 64, 97], [-112, 35, -70]]
A: | [91, 63, 46, 92, 96, 90, 100, 35] | 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Input: Consider Input: [[-53, -85, 38, -82, 24, -165], [7, -123, -175, -193, 66, -76, -109]]
Output: [38, 66]
Input: Consider Input: [[-59, 44, -29], [-168, -64, -74, 51, -166], [-22, -130, -9, -67, -98, 46, -114]]
Output: [44, 51, 46]
Input: Consider Input: [[-117, -156], [70, 47, 79, -112, -101, -155, -99], [-48, 60, 63, -124, -15, -57, -165], [16, -29, -112, 18, -104, 64, 47]]
| Output: [-117, 79, 63, 64]
| 2 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Ex Input:
[[-115, -177, 49, -176, -199], [2, 68, -35, 54, 43, -130]]
Ex Output:
[49, 68]
Ex 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]]
Ex Output:
[14, -43, -3, 14, 56, 61, -19, 97, -14]
Ex Input:
[[-73, 16, 100, 10], [66, -66, -9, 91, 72], [30, -111, 41, -120, -24, 85, 73]]
Ex Output:
| [100, 91, 85]
| 1 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
--------
Question: [[-13, -42, 79], [10, -6, 24, -174, -92], [65, 8, -120, -166, 36], [-181, 25, -196, -180, -44], [-38, 72, 84]]
Answer: [79, 24, 65, 25, 84]
Question: [[-4, -117, -177, -28, -87, -48], [-168, -118, 18, 12, -108, 83, -91]]
Answer: [-4, 83]
Question: [[-130, -20, -171, -122, 49, -43], [-173, -82, 17], [87, -55, -70, -113], [69, 10, -121, -177]]
Answer: | [49, 17, 87, 69]
| 7 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Ex Input:
[[-29, 35, -38, -160, -138], [-179, -69], [-171, -170, -136, -81], [78, -45, 92], [-6, 91, -167, -63, -193, 69], [58, 42], [-152, -58, -89, -148, 48], [-81, -41, -193, -127]]
Ex Output:
[35, -69, -81, 92, 91, 58, 48, -41]
Ex Input:
[[-96, 57, -186, 28, -171], [80, 54], [-20, -187], [-50, -169], [-13, 8, -129, -76, -46], [-119, 64, -170]]
Ex Output:
[57, 80, -20, -50, 8, 64]
Ex Input:
[[-65, -132, -105, 40, 32, 84], [-53, -33]]
Ex Output:
| [84, -33]
| 1 | NIv2 | task207_max_element_lists | fs_opt |
Teacher: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Teacher: Now, understand the problem? If you are still confused, see the following example:
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Reason: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this instance: [[64, -44, -126], [62, -99, 85, -103, -137, -79, -41], [-168, -129, -124], [-86, -94, 25, -171, -75], [-195, 0, -10, 49], [-131, 81, 17, 31, 98, -59]]
Student: | [64, 85, -124, 25, 49, 98] | 2 | NIv2 | task207_max_element_lists | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Output: [5, 9, 3, 7]
Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input case for you: [[-21, -17, -178, 61, -92, -68], [-171, 1, -185, 17, -19, 4, -95]]
Output: | [61, 17] | 1 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[Q]: [[-66, -108, -51, -41], [-113, 13], [-83, 43], [88, -114, 42, -103, -132, 68, 62], [-164, 15], [10, 32, -120, 32], [-132, -140, -73, 33], [-27, -174, 2, 57, -113]]
[A]: [-41, 13, 43, 88, 15, 32, 33, 57]
[Q]: [[-162, -197, 57, -149], [71, -127, 21, -120, 56, -18, 82], [-18, 1, -152, -113, 5, -53], [-138, 28], [70, -65]]
[A]: [57, 82, 5, 28, 70]
[Q]: [[72, 89, -49, 58, 88], [-71, 10, -158, 19, -39, -124, 59], [33, -44, -96, -62, -185, -112], [-29, -36, 61, -147, 16, -142, -18], [-30, 90, 14, -187, -59, -52, 34], [-41, 82, -172, -180, -13], [-122, -89], [-165, 51]]
[A]: | [89, 59, 33, 61, 90, 82, -89, 51]
| 5 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution is here: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this: [[-164, 45], [100, -50, 90, 22, 72, 47, -98], [-128, -45, -148, 5], [82, -114, -134, -101, -42, -180, -144], [-101, -34], [-45, 11, -107, 68, 76, -136], [52, -115, 31, -119, -4, -189], [-74, 6, -106, 61, 78], [-84, -4, -200]]
Solution: | [45, 100, 5, 82, -34, 76, 52, 78, -4] | 6 | NIv2 | task207_max_element_lists | fs_opt |
Detailed Instructions: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
See one example below:
Problem: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[94, -41, -58, 85], [-99, 16, 44, -95, -181, 24]]
Solution: | [94, 44] | 4 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Q: [[-66, -108, -51, -41], [-113, 13], [-83, 43], [88, -114, 42, -103, -132, 68, 62], [-164, 15], [10, 32, -120, 32], [-132, -140, -73, 33], [-27, -174, 2, 57, -113]]
A: [-41, 13, 43, 88, 15, 32, 33, 57]
****
Q: [[-42, -57, 13, -41], [45, -68, -199]]
A: [13, 45]
****
Q: [[94, -41, -58, 85], [-99, 16, 44, -95, -181, 24]]
A: | [94, 44]
****
| 4 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution is here: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this: [[72, -50, -88], [83, 58, -171, -89], [-170, 96, -61], [-196, 21, -119, 100, 86, -2, 14]]
Solution: | [72, 83, 96, 100] | 6 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Input: Consider Input: [[-117, -110, 36, 18], [-15, 40, -140], [-33, 79, 8, 42, -4, 84]]
Output: [36, 40, 84]
Input: Consider Input: [[-29, -139], [-113, 72, 88, -95, -146, -186], [31, -151, -171, -180, -87, -12, -181]]
Output: [-29, 88, 31]
Input: Consider Input: [[89, 76, -152, -192], [67, -121, -66, -108], [33, -167, 52], [-54, -186], [-137, 70, -20], [62, 87, -130, -185], [-191, 48], [-69, 11, -39, 14, -155], [-187, -103, 52, 84, 94, 33]]
| Output: [89, 67, 52, -54, 70, 87, 48, 14, 94]
| 2 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example solution: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[-51, -92, -181, -134, 56, -85], [-87, -90, -147], [97, -178, -18, -191, -55, -164], [5, -145], [37, 67, 75, -112, -191, 34], [100, 17], [-165, 4, 39, -184, -136], [-94, 22, -33, 24, -13, 38]]
| Solution: [56, -87, 97, 5, 75, 100, 39, 38] | 5 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
--------
Question: [[-53, -26, -156, 87], [-73, -173, 18, -40, -175, 99], [-171, -75, 15, 18, -90, -162, -104]]
Answer: [87, 99, 18]
Question: [[38, -34, 24, 52, -11, 5], [-79, -185, 72, -181, 76], [-87, 25, 70, -182], [-10, 93, -144], [-96, -18, -23, 26, -100], [-79, 41, 99, -121, -68, -11], [-133, -37, -58, 12, -84, -79], [93, 94, -160, -81, -128, -122, -42]]
Answer: [52, 76, 70, 93, 26, 99, 12, 94]
Question: [[-158, 91, -139, -109, 35, -56, -198], [20, 24], [-89, 47, -79, 25, 47], [-103, -124], [-64, -186, 88], [-181, -183, -6, 52, 58, -107]]
Answer: | [91, 24, 47, -103, 88, 58]
| 7 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution is here: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this: [[89, 76, -152, -192], [67, -121, -66, -108], [33, -167, 52], [-54, -186], [-137, 70, -20], [62, 87, -130, -185], [-191, 48], [-69, 11, -39, 14, -155], [-187, -103, 52, 84, 94, 33]]
Solution: | [89, 67, 52, -54, 70, 87, 48, 14, 94] | 6 | NIv2 | task207_max_element_lists | fs_opt |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Why? Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input: [[-34, -26, -152, 39, 66, 15], [-27, -141, -64, 73, 27], [-51, 55, 90, 5, 9]]
Solution: | [66, 73, 90] | 0 | NIv2 | task207_max_element_lists | fs_opt |
Detailed Instructions: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
See one example below:
Problem: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[-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]]
Solution: | [-2, 57, 97, 30, 24] | 4 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[53, -158, -69, 79, -98, -187, 65], [0, -152], [-171, -149, -71, -181, -72, -155], [32, 31, -153], [78, 34, -148, -1, 98, -69], [-157, 26, -9, -200], [-147, 20], [-85, 70, 35, -84, 25, -58]]
[79, 0, -71, 32, 98, 26, 20, 70]
[[-56, -179, -2, -94], [-5, 31, -137, -128], [-53, -151, -60, 57, -3], [-73, 0, -54, -128], [6, -74, 55, -90], [94, -128, 94, 44, -189, -38], [-167, -129, -11, 49, -60, -66], [-123, -3, 57, -159], [-120, -178, -46, -190, -26, 9, -8]]
[-2, 31, 57, 0, 55, 94, 49, 57, 9]
[[-143, -171, -138, -69, -182], [-113, 4, -149], [-85, 0], [-194, -45, -140], [-42, 48, -70, 66, -33], [36, -197, 92, 20], [55, -155]]
| [-69, 4, 0, -45, 66, 92, 55]
| 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
--------
Question: [[-105, -7, 11, -135], [-148, -166, 11], [-160, -67, 35], [38, -54, -108, 82, 46, -10], [-82, -177, -194, -95, -75, -86, 48], [-52, -21, 47, 41, -120, 95], [-181, -142, 2, -18, -34], [0, -148], [-115, -151]]
Answer: [11, 11, 35, 82, 48, 95, 2, 0, -115]
Question: [[11, 10, -180, -124, -192, 98], [86, -172, -162]]
Answer: [98, 86]
Question: [[-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]]
Answer: | [-2, 57, 97, 30, 24]
| 7 | NIv2 | task207_max_element_lists | fs_opt |
instruction:
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
question:
[[-151, -194], [-174, 80, 60], [-84, 65, -199]]
answer:
[-151, 80, 65]
question:
[[-80, -194], [-27, -106, -119], [-185, -153, -114]]
answer:
[-80, -27, -114]
question:
[[-191, 34, 74, -110, -118, -35], [-128, 36, -145, 50, -127, 78, 43], [-166, -132], [-60, -144, -107, -52, -2, 63], [73, -89, -1, 35, -16], [-84, 39]]
answer:
| [74, 78, -132, 63, 73, 39]
| 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution is here: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this: [[70, -121, -154, -99, 76, 89, -99], [-154, -54, 50, 13, -171, 20, -71], [-25, -171, -40, -54], [-181, -156, 50, 98, -56, 95, -200], [-38, 4, 29, -10, -177, -58], [-66, 25, 28, -160, -94], [42, 3, -14, -129]]
Solution: | [89, 50, -25, 98, 29, 28, 42] | 6 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[EX Q]: [[-57, -10, -27, -160], [-80, -130, -16, 25], [-65, -106, 30, -104, -20, 77], [-192, -87, -49, 64, 43, 94, 82], [-81, -10, 20, -28, 79, 73, -1], [-191, -83, -113, 40, 6]]
[EX A]: [-10, 25, 77, 94, 79, 40]
[EX Q]: [[-105, 91, -50, 93, -119, -108], [-190, -161, -97, -149, -13, 57], [-138, -124, -182, 20, -75, 98, -127], [-200, -188, -102, -171, -179, 60, 29], [-69, -87, 15, -52], [-177, -147, -64], [-147, -198, -141, -67, -9, -135, -106]]
[EX A]: [93, 57, 98, 60, 15, -64, -9]
[EX Q]: [[-121, -16, -159], [15, 22, -139, -127, 30, -178]]
[EX A]: | [-16, 30]
| 6 | NIv2 | task207_max_element_lists | fs_opt |
Part 1. Definition
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Part 2. Example
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Answer: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Part 3. Exercise
[[46, -115, 39, 85, 21], [75, -175, -41], [-145, -142, -54, -68, -182, -112, -154], [78, 33, -1, -108, -61, -47, -32], [35, 30, 21], [-14, 14, -55, -130, -65], [49, -90, -143, -10, -42, -53], [-90, 9]]
Answer: | [85, 75, -54, 78, 35, 14, 49, 9] | 7 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution is here: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this: [[-96, -114, 12, 17, 46, -148], [-17, -149], [-86, -133, -122, -9, 34, -31, -139], [-163, 72, 88], [-55, 91, -162, 97]]
Solution: | [46, -17, 34, 88, 97] | 6 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Ex Input:
[[-129, -163, 91, 74, -11, -30, -197], [-55, -146, 3, -187], [31, -111, 49, -80], [-6, -162, 70, -24, -150], [46, 61, -2, 91, 5]]
Ex Output:
[91, 3, 49, 70, 91]
Ex Input:
[[-145, -140, -7, -47, -28, -158], [-15, -2, 91, 64, 43, -22, -33], [-165, 31, -25, 46, -178, -168, 93], [-146, -51, 86], [-107, 39, -154, -156, -33], [-89, -36, -35, -106], [-21, 28, -165, 23, -81, 74, -138], [-45, -28, 72, -140, -87], [17, -83]]
Ex Output:
[-7, 91, 93, 86, 39, -35, 74, 72, 17]
Ex Input:
[[-104, -20, 69, 26], [98, 82, 91, -187, -32], [45, -4, 84, -40, -116, -104, -126], [89, 33, -57, 15, 99], [-118, -95, -12, -33]]
Ex Output:
| [69, 98, 84, 99, -12]
| 1 | NIv2 | task207_max_element_lists | fs_opt |
Detailed Instructions: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
See one example below:
Problem: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[52, -128, -179, -149, 20, -143], [-174, -30, -84, -103, 39, -123, -85], [-52, 86, -77, 10, 58, -150, 95], [-165, -32, -190, -88, 2], [-21, -113, -67, -17, -39, -177], [-124, -40, 57], [73, -171, -187], [70, 37, 45, -160, -78], [-48, 44, -59, -75, -63, -77]]
Solution: | [52, 39, 95, 2, -17, 57, 73, 70, 44] | 4 | NIv2 | task207_max_element_lists | fs_opt |
Part 1. Definition
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Part 2. Example
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Answer: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Part 3. Exercise
[[-110, 28, -163, -34, -127, 12, 88], [-112, -39, -65, 42, 65, 82], [-28, -160, -168, -173, 62, 1], [90, 10, 72, -158]]
Answer: | [88, 82, 62, 90] | 7 | NIv2 | task207_max_element_lists | fs_opt |
Teacher: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Teacher: Now, understand the problem? If you are still confused, see the following example:
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Reason: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this instance: [[-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]]
Student: | [-24, 82, 61, 97, 73, 49, 88] | 2 | NIv2 | task207_max_element_lists | fs_opt |
Teacher: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Teacher: Now, understand the problem? If you are still confused, see the following example:
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Reason: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this instance: [[-198, 43], [28, 89, 59, 30], [-51, -136], [-37, -28, -169, -147, -123, 8, -25], [74, 19, -75, -164, -86, 61, -74], [72, -182, 2, -145, -60, 79, 86]]
Student: | [43, 89, -51, 8, 74, 86] | 2 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example solution: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[-198, -146, -175, -62, 44, 55, -46], [20, -158], [-77, 28, -47, -193], [-45, 94, -118, -139, 71, -29, -143], [-188, -167, 38, 82]]
| Solution: [55, 20, 28, 94, 82] | 5 | NIv2 | task207_max_element_lists | fs_opt |
TASK DEFINITION: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
PROBLEM: [[-26, -102, -136], [-24, 31], [-27, -127, -134, -71], [94, -98], [-150, -182, 69, 59], [47, -49, -92], [-155, 55, -81, -194], [-8, -35]]
SOLUTION: [-26, 31, -27, 94, 69, 47, 55, -8]
PROBLEM: [[-116, -68, 24, -71, 28], [70, 38, 69, 30, -74], [-97, 52], [-110, -129, 63, 50, 44, -11], [-190, -145], [-176, 11, -35]]
SOLUTION: [28, 70, 52, 63, -145, 11]
PROBLEM: [[-198, 43], [28, 89, 59, 30], [-51, -136], [-37, -28, -169, -147, -123, 8, -25], [74, 19, -75, -164, -86, 61, -74], [72, -182, 2, -145, -60, 79, 86]]
SOLUTION: | [43, 89, -51, 8, 74, 86]
| 8 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[-103, 39, -4, -131, -179], [4, -70, -142, -41, -18, -37], [16, 32, -48], [40, -134], [-186, -147, -130, 77, -6], [-44, -123, 43, -31, -92, -86, 49], [-41, -109, -1, 42, 34], [-164, 16, 96, 94, -38, 84], [61, -190]]
A: | [39, 4, 32, 40, 77, 49, 42, 96, 61] | 9 | NIv2 | task207_max_element_lists | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Output: [5, 9, 3, 7]
Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input case for you: [[-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] | 1 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
--------
Question: [[-187, -74, -95, -170, -190, -61, -119], [-151, -197], [63, -132, -145, -124], [-169, -69, -48, -114], [-31, -89, -187, -198, -63, 2], [66, 19]]
Answer: [-61, -151, 63, -48, 2, 66]
Question: [[96, -174], [-117, 48, -174, 19, -26, -7], [-151, 65, 16, -195], [19, 15], [-136, -26], [-118, -82, 95, 67], [-80, -160, -30, -94, -11, -55]]
Answer: [96, 48, 65, 19, -26, 95, -11]
Question: [[-82, 61], [-175, 82], [-63, 91, -199, -100, -169], [-29, -193, -17, -93, 67, -65], [-29, -94, 77, -181, -195, 91], [-126, -66, -186, -30, 19], [-14, 2, -114, 85, -130, -74], [-169, -77, -127, 35, -4, 0], [28, -148, 89, -165, -24, 41, 79]]
Answer: | [61, 82, 91, 67, 91, 19, 85, 35, 89]
| 7 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[-120, -110, 31, 58, 59, 96, 8], [-164, 46, 46, -70, -142], [100, -161, -146], [93, -131, -90, -6], [-61, -49, -51, 47, -1, -152, 20], [-89, 54, -18, -35, 89], [-49, -65, -39, -138, 0], [-96, -60, 52], [-106, 77, 76, 67, -164, -157, -137]]
A: | [96, 46, 100, 93, 47, 89, 0, 52, 77] | 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Example solution: [5, 9, 3, 7]
Example explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[-42, -96, 0, -18, 58], [-131, -127, -42, -186, -1], [-127, -145], [25, -18, -198], [19, -57, 71]]
| Solution: [58, -1, -127, 25, 71] | 5 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution is here: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this: [[-73, -40, 38, 19], [-190, -39], [-137, 7, -125]]
Solution: | [38, -39, 7] | 6 | NIv2 | task207_max_element_lists | fs_opt |
Teacher: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Teacher: Now, understand the problem? If you are still confused, see the following example:
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Reason: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this instance: [[-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]]
Student: | [-46, -32, 52, -19, 38, -26, 87, 90, 74] | 2 | NIv2 | task207_max_element_lists | fs_opt |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Why? Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input: [[-80, -61, 47, 99, -114, -80, -183], [-59, -57, -196, 74, 22], [44, -188, 86, -9, 1, 30]]
Solution: | [99, 74, 86] | 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[-173, -4, 13, -117, 69], [82, -51, -156, 13], [7, 97, 15, -3, -140, -118, -195]]
[69, 82, 97]
[[56, -4, -191, -182], [47, -70, -154], [-16, -195, -67, -196, -12]]
[56, 47, -12]
[[-15, -146, 65, 1, 46, -59], [53, 68], [-118, -116], [-90, -60, -145, 73, -118, -171], [-21, -51, -104, -168, 30, -130], [8, -54, -25, 73, 76, -123, -55], [-55, -111, 29, -109, -165, 28]]
| [65, 68, -116, 73, 30, 76, 29]
| 0 | NIv2 | task207_max_element_lists | fs_opt |
TASK DEFINITION: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
PROBLEM: [[50, -128, 17, 76, -122, 50], [6, -23, -7, -120, 28, -26], [-16, -60, -152], [28, -111, 22, -26, -61, -141, -16], [-51, 74]]
SOLUTION: [76, 28, -16, 28, 74]
PROBLEM: [[43, -158, 27, -169, -144, 35], [-73, -173]]
SOLUTION: [43, -73]
PROBLEM: [[50, -48], [24, -61, -146, 41, -40], [-175, -23, 79], [-43, -164, -10, 41], [37, -27], [92, -172, -158, -110, 57], [49, -3, 13, -113], [-72, -155, -23, -119, 46, -200, 66]]
SOLUTION: | [50, 41, 79, 41, 37, 92, 49, 66]
| 8 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Let me give you an example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
The answer to this example can be: [5, 9, 3, 7]
Here is why: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
OK. solve this:
[[50, -48], [24, -61, -146, 41, -40], [-175, -23, 79], [-43, -164, -10, 41], [37, -27], [92, -172, -158, -110, 57], [49, -3, 13, -113], [-72, -155, -23, -119, 46, -200, 66]]
Answer: | [50, 41, 79, 41, 37, 92, 49, 66] | 8 | NIv2 | task207_max_element_lists | fs_opt |
instruction:
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
question:
[[-73, 37, -21, -114, -70, -143, -15], [-28, -38, 32, -102], [-192, -47, 34, -51, -69, 1, -118], [-161, -3, -23], [-176, -187, 97, -134], [97, -175], [61, -159, -108, -179, 68]]
answer:
[37, 32, 34, -3, 97, 97, 68]
question:
[[-42, -152, -122, -79], [-85, 39, 36, -53], [83, 52], [-31, -2, -176, -152, -107, 44, 62], [10, -163, -16], [44, 33, 55, -59, 1, -30, -19]]
answer:
[-42, 39, 83, 62, 10, 55]
question:
[[-119, -188, -149, 1, 32], [-64, 79, -184, 14], [-62, -176, 90], [-153, -36, -50, 64], [-21, -166, 1, 37, 90], [-76, -30, -190, -174, 23, 90]]
answer:
| [32, 79, 90, 64, 90, 90]
| 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Input: Consider Input: [[-92, 82], [-90, 37], [-135, -183], [-140, 37], [-156, -132, -162, -185], [28, 67, -110, -50, -53]]
Output: [82, 37, -135, 37, -132, 67]
Input: Consider Input: [[-129, 67, 1, -129], [-35, -169, 26], [-125, 7, -53, -56], [-138, -51, -77, -16], [-139, -98, 78, 41], [-74, 46, 11, 79, -176, -89, -109], [4, -21, -101, -105, -99], [85, -182], [-105, 9, -122, -38, 35]]
Output: [67, 26, 7, -16, 78, 79, 4, 85, 35]
Input: Consider Input: [[6, 53, 54, 62, -151, 13], [-188, 36], [-122, -120], [-100, -140, 53, -124, -137, -73], [-32, -192, -108]]
| Output: [62, 36, -120, 53, -32]
| 2 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution is here: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Now, solve this: [[-5, 1, 60, 44, 69, -136, -88], [16, -57], [61, 79], [61, -13, -139, -18, -9, 65, -102], [42, -69]]
Solution: | [69, 16, 79, 65, 42] | 6 | NIv2 | task207_max_element_lists | fs_opt |
Part 1. Definition
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Part 2. Example
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Answer: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Part 3. Exercise
[[-99, -64], [80, -83, 69, 67], [48, 20]]
Answer: | [-64, 80, 48] | 7 | NIv2 | task207_max_element_lists | fs_opt |
Detailed Instructions: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
See one example below:
Problem: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Explanation: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Problem: [[-111, -164, -34, 78, -61, 74], [27, -18, -143, 30], [-164, 61, 79], [-179, -78, -53, 68, 16, -1, -104], [29, 68], [-138, 89, -112, -157, -32, -153, -90], [-75, -22, -190, -194], [-64, 13, 10, 10, -186], [-179, -64, -102, -134, -176]]
Solution: | [78, 30, 79, 68, 68, 89, -22, 13, -64] | 4 | NIv2 | task207_max_element_lists | fs_opt |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Why? Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input: [[-103, 60], [-23, -155, 99]]
Solution: | [60, 99] | 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[50, -4, 10, -150], [-156, 1], [69, -194, -193, 61, -83]]
A: | [50, 1, 69] | 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Let me give you an example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
The answer to this example can be: [5, 9, 3, 7]
Here is why: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
OK. solve this:
[[-134, -48, 4, 24, 71, -187, -166], [44, 10, 44, -55], [-63, -29, 15, -89, 78, 63, -106], [-112, -11, -134, 87, -46], [-128, -93, 68, -87], [-147, -63, 91]]
Answer: | [71, 44, 78, 87, 68, 91] | 8 | NIv2 | task207_max_element_lists | fs_opt |
TASK DEFINITION: In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
PROBLEM: [[-38, 56, -23], [-19, -178, -59]]
SOLUTION: [56, -19]
PROBLEM: [[100, 3, -8, -15, -181, 25, -122], [-183, -120], [-95, -183, -94], [-34, -100, -172, 63, -139, -136], [-175, -113, -104, 50], [-170, -139], [-159, 80, 29, -100, -142, -108, -36], [56, -11], [-120, -109, -28, 88, -145, -92]]
SOLUTION: [100, -120, -94, 63, 50, -139, 80, 56, 88]
PROBLEM: [[-43, 56, -132, 14, -127, -171], [-185, 49, 64, -46, -47, -196], [-184, 18, 47, 71, -3, -102]]
SOLUTION: | [56, 64, 71]
| 8 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Let me give you an example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
The answer to this example can be: [5, 9, 3, 7]
Here is why: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
OK. solve this:
[[-1, -9, 8, -55, -47, -154, -186], [8, -169], [57, -109]]
Answer: | [8, 8, 57] | 8 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
--------
Question: [[-27, -28, 59, -2, -90, 50, -81], [9, 83, -62, 32]]
Answer: [59, 83]
Question: [[53, -12], [-42, -18, 64], [-34, -130, -92], [92, -31], [22, -53], [-42, -23, 82, -4, 39, 36, -162], [-185, 85, -116, 21, -177], [-176, 81, -105, 9, -39, 34, -140], [-51, 30, -36, 43, -179]]
Answer: [53, 64, -34, 92, 22, 82, 85, 81, 43]
Question: [[-1, -9, 8, -55, -47, -154, -186], [8, -169], [57, -109]]
Answer: | [8, 8, 57]
| 7 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[Q]: [[-9, 61, 5, -18, 76, 64], [-40, -62, -195, -168], [-178, 87, -197], [-34, -55, -24, -22, -106, -115, 30], [11, 6, -129, -164, -110, -136, 27], [-122, -113, -133, 27], [4, 51, -48, 2]]
[A]: [76, -40, 87, 30, 27, 27, 51]
[Q]: [[96, -52, 68, -142], [-73, -61, -136, -199, 2], [-76, -160, -80, -125, -52, 19], [59, -116, -112, -40, -22], [-16, 43], [-187, 28, -125, -154, -93, -133, 38], [-46, -200, -124, -158]]
[A]: [96, 2, 19, 59, 43, 38, -46]
[Q]: [[48, 98, -160, -102, 15, -113, 98], [-199, -152]]
[A]: | [98, -152]
| 5 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
One example is below.
Q: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
A: [5, 9, 3, 7]
Rationale: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
Q: [[-48, 7, 35, -55, 92, 87, -47], [-126, 53, -178], [-163, 84, 98, 69], [99, -109, -148, -199, -145, -149, -101]]
A: | [92, 53, 98, 99] | 9 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Let me give you an example: [[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
The answer to this example can be: [5, 9, 3, 7]
Here is why: Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
OK. solve this:
[[-87, -101, -29, -90, -66], [85, -174, -38, 85], [-81, 47, 59], [-167, 38, 93]]
Answer: | [-29, 85, 59, 93] | 8 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Example Input: [[-62, 3, -118, -146, 75, -150], [3, -126, 64, -23], [64, 28], [-90, 57, 97, -92, -179]]
Example Output: [75, 64, 64, 97]
Example Input: [[-26, 27, -21, 89, 86, -164], [96, -168], [-189, -188, -69], [-14, -14, -126, 40, -65], [52, -23, -149, 17, 90], [-171, -190, 75, 40, -187, 35], [-108, 99], [-81, 98, -137, 59], [4, -13, -66, -24, 41, -68, -147]]
Example Output: [89, 96, -69, 40, 90, 75, 99, 98, 41]
Example Input: [[93, 68, -187, -163, 81, 88], [-18, 38, -29, -159, 45, -153, -137], [17, -51, 10, -191, 83, -64, -54], [83, -94, -161, 90, -159, 100, 12], [-94, -128, 73, -55, 16, 26], [-9, -69, -104]]
Example Output: | [93, 45, 83, 100, 73, -9]
| 3 | NIv2 | task207_max_element_lists | fs_opt |
instruction:
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
question:
[[-54, -127, -178, -98], [7, 82, 69], [-159, -142, -82, -156, -100, 7], [-76, 88, -45, 41], [86, -169]]
answer:
[-54, 82, 7, 88, 86]
question:
[[-82, -50, 44, -81, 8, -40, -47], [57, -72, 38, 1, -158], [-7, -143, -15, 55, 2], [67, 50, 78, 15, 77], [5, -174, -101, -40, 8], [-38, -10], [-45, -138, -140, 13, -76, -37]]
answer:
[44, 57, 55, 78, 8, -10, 13]
question:
[[-48, 90, -121], [5, 61], [-123, -61, 18, 86, -3]]
answer:
| [90, 61, 86]
| 9 | NIv2 | task207_max_element_lists | fs_opt |
You will be given a definition of a task first, then an example. Follow the example to solve a new instance of the task.
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
[[5, 3], [2, 9, 8], [3, 3], [5, 2, 7, 1]]
Solution: [5, 9, 3, 7]
Why? Input of this example is a list containing four inner lists. The maximum value of the first inner list is 5, the maximum value of the second list is 9, the maximum value of the third list is 3, and the maximum value of the fourth list is 7. So the output should be [5, 9, 3, 7], and this is a good example.
New input: [[-197, 66, -167, -26], [-189, -91], [-137, 69, 37, -191, -156], [-103, 47, 40], [-104, -114, -67, 15], [-160, -126, 80, 92, 24, 83]]
Solution: | [66, -91, 69, 47, 15, 92] | 0 | NIv2 | task207_max_element_lists | fs_opt |
In this task, you are given a list. This list contains many lists of integers. The list is several items written within a []. Your task is to find the maximum number among the members of each inner list. The output should be a list comprised of the maximums with the same order as the internal lists.
Input: Consider Input: [[97, -79, -195, 1, -45, -140], [-172, -37, -72], [70, 17, 83, -49]]
Output: [97, -37, 83]
Input: Consider Input: [[-138, -16, -188, -181, 86, -151], [56, -176, 31, -164, 39, 51]]
Output: [86, 56]
Input: Consider Input: [[43, -78, -133, -6, -161, 100], [93, 61], [-123, 1, -158]]
| Output: [100, 93, 1]
| 2 | NIv2 | task207_max_element_lists | fs_opt |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.