inputs
stringlengths
222
538
targets
stringlengths
2
14
_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 of integers and an integer k. You need to find the kth largest element in the input list. -------- Question: [282, 270, 176, 119, 140, 70, 113, 56, 260, 194, 126, 274, 84, 145, 80, 202, 51, 103, 112, 240], k=2 Answer: 274 Question: [103, 193, 23, 250, 256, 129, 139, 199, 69, 248, 2...
97
7
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. -------- Question: [104, 179, 28, 80, 243, 289, 122, 46, 292, 168, 258, 82, 132, 88, 131, 153, 155, 184, 223, 262], k=20 Answer: 28 Question: [248, 96, 267, 173, 279, 138, 170, 221, 29, 83, 15...
52
7
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [EX Q]: [296, 211, 166, 25, 64, 124, 108, 215, 93, 277, 67, 126, 24, 15, 240, 30, 256, 186, 294, 236], k=4 [EX A]: 256 [EX Q]: [191, 97, 63, 44, 129, 122, 204, 100, 289, 18, 256, 264, 226, 67, ...
279
6
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Let me give you an example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 The answer to this example can be: 111 Here is why: 111 is the 1...
15
8
NIv2
task1194_kth_largest_element
fs_opt
Part 1. Definition In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Part 2. Example [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Answer: 111 Explanation: 111 is the 15th largest element i...
97
7
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [264, 228, 111, 62, 246, 283, 167, 184, 190, 38, 282, 251, 139, 76, 25, 180, 40, 48, 127, 292], k=8 190 [111, 105, 27, 188, 147, 106, 289, 104, 117, 263, 140, 62, 108, 14, 88, 261, 226, 269, 11...
108
0
NIv2
task1194_kth_largest_element
fs_opt
Teacher: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Teacher: Now, understand the problem? If you are still confused, see the following example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132...
17
2
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Q: [185, 87, 54, 99, 176, 135, 37, 207, 276, 296, 282, 241, 216, 290, 71, 193, 178, 137, 124, 32], k=2 A: 290 **** Q: [100, 154, 127, 273, 78, 40, 163, 203, 252, 155, 216, 108, 205, 257, 156, 2...
17 ****
4
NIv2
task1194_kth_largest_element
fs_opt
TASK DEFINITION: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. PROBLEM: [183, 36, 88, 201, 229, 26, 21, 182, 12, 197, 148, 117, 213, 261, 86, 97, 82, 57, 129, 276], k=12 SOLUTION: 97 PROBLEM: [93, 190, 59, 182, 99, 137, 276, 102, 273, 138,...
129
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [Q]: [156, 11, 295, 47, 230, 49, 109, 267, 121, 169, 128, 124, 216, 220, 237, 24, 224, 105, 35, 22], k=7 [A]: 216 [Q]: [175, 129, 86, 215, 223, 274, 87, 50, 34, 35, 206, 89, 250, 103, 291, 100...
81
5
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution is here: 111 Explanation: 111 is the 15th largest element in the list. ...
86
6
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Q: [282, 291, 242, 260, 151, 49, 92, 210, 137, 205, 46, 272, 164, 131, 155, 221, 286, 106, 68, 36], k=3 A: 282 **** Q: [199, 145, 265, 71, 11, 82, 30, 24, 13, 119, 224, 22, 68, 150, 206, 81, 29...
133 ****
4
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example is below. Q: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 A: 111 Rationale: 111 is the 15th largest element in the list. Q: [2...
26
9
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Q: [297, 176, 184, 245, 143, 204, 191, 188, 52, 16, 41, 197, 244, 93, 59, 276, 227, 120, 277, 138], k=14 A: 138 **** Q: [14, 269, 11, 175, 243, 237, 297, 77, 272, 232, 150, 135, 52, 287, 76, 43...
267 ****
4
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution is here: 111 Explanation: 111 is the 15th largest element in the list. ...
54
6
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example is below. Q: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 A: 111 Rationale: 111 is the 15th largest element in the list. Q: [5...
89
9
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [52, 39, 155, 219, 95, 73, 207, 209, 63, 11, 123, 266, 126, 192, 169, 146, 26, 38, 43, 165], k=14 63 [184, 74, 249, 256, 81, 240, 36, 45, 278, 186, 170, 143, 146, 72, 176, 97, 149, 70, 166, 208...
132
0
NIv2
task1194_kth_largest_element
fs_opt
Teacher: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Teacher: Now, understand the problem? If you are still confused, see the following example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132...
160
2
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example Input: [59, 234, 102, 24, 260, 125, 79, 116, 159, 285, 173, 105, 21, 29, 40, 279, 130, 15, 222, 219], k=16 Example Output: 40 Example Input: [70, 141, 240, 15, 156, 178, 52, 187, 149, 2...
160
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example is below. Q: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 A: 111 Rationale: 111 is the 15th largest element in the list. Q: [1...
240
9
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [EX Q]: [115, 212, 236, 99, 137, 92, 261, 241, 55, 210, 260, 46, 183, 289, 39, 204, 126, 66, 299, 203], k=8 [EX A]: 210 [EX Q]: [167, 86, 113, 26, 291, 235, 92, 170, 285, 66, 59, 76, 158, 196, ...
91
6
NIv2
task1194_kth_largest_element
fs_opt
TASK DEFINITION: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. PROBLEM: [274, 108, 167, 131, 93, 206, 151, 159, 90, 170, 26, 173, 160, 255, 81, 248, 211, 207, 171, 189], k=1 SOLUTION: 274 PROBLEM: [124, 220, 271, 232, 145, 64, 276, 95, 17,...
257
8
NIv2
task1194_kth_largest_element
fs_opt
Teacher: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Teacher: Now, understand the problem? If you are still confused, see the following example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132...
138
2
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Let me give you an example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 The answer to this example can be: 111 Here is why: 111 is the 1...
109
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example input: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example output: 111 Example explanation: 111 is the 15th largest element in t...
256
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution is here: 111 Explanation: 111 is the 15th largest element in the list. ...
109
6
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Input: Consider Input: [120, 104, 231, 246, 115, 267, 125, 205, 69, 166, 18, 130, 129, 154, 101, 142, 68, 10, 92, 201], k=17 Output: 69 Input: Consider Input: [198, 127, 136, 120, 44, 208, 16...
Output: 109
2
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Let me give you an example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 The answer to this example can be: 111 Here is why: 111 is the 1...
243
8
NIv2
task1194_kth_largest_element
fs_opt
Teacher: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Teacher: Now, understand the problem? If you are still confused, see the following example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132...
111
2
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Input: Consider Input: [175, 93, 118, 125, 97, 208, 117, 252, 254, 104, 229, 275, 10, 256, 202, 139, 103, 283, 219, 25], k=10 Output: 175 Input: Consider Input: [82, 197, 212, 266, 30, 149, 5...
Output: 290
2
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [Q]: [267, 175, 73, 279, 67, 288, 221, 86, 275, 24, 87, 257, 112, 265, 16, 76, 101, 130, 297, 53], k=1 [A]: 297 [Q]: [45, 55, 282, 26, 67, 11, 244, 283, 290, 51, 164, 276, 124, 268, 129, 132, ...
216
5
NIv2
task1194_kth_largest_element
fs_opt
instruction: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. question: [214, 278, 164, 224, 256, 162, 155, 283, 289, 195, 137, 274, 179, 297, 42, 118, 135, 228, 266, 115], k=2 answer: 289 question: [81, 267, 208, 166, 27, 217, 72, 254, 13, 9...
299
9
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example input: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example output: 111 Example explanation: 111 is the 15th largest element in t...
166
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example input: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example output: 111 Example explanation: 111 is the 15th largest element in t...
12
3
NIv2
task1194_kth_largest_element
fs_opt
instruction: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. question: [177, 211, 250, 292, 276, 288, 108, 107, 115, 169, 264, 181, 163, 268, 210, 265, 263, 137, 243, 218], k=9 answer: 243 question: [115, 212, 236, 99, 137, 92, 261, 241, 55,...
176
9
NIv2
task1194_kth_largest_element
fs_opt
Part 1. Definition In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Part 2. Example [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Answer: 111 Explanation: 111 is the 15th largest element i...
113
7
NIv2
task1194_kth_largest_element
fs_opt
instruction: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. question: [129, 167, 275, 150, 232, 198, 22, 115, 121, 270, 58, 112, 252, 103, 265, 235, 227, 260, 84, 153], k=15 answer: 115 question: [214, 278, 164, 224, 256, 162, 155, 283, 289...
113
9
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution is here: 111 Explanation: 111 is the 15th largest element in the list. ...
125
6
NIv2
task1194_kth_largest_element
fs_opt
instruction: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. question: [105, 65, 173, 219, 53, 136, 108, 184, 267, 280, 12, 163, 154, 14, 286, 140, 298, 228, 51, 11], k=14 answer: 105 question: [233, 137, 292, 100, 146, 263, 188, 165, 255, 1...
125
9
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example input: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example output: 111 Example explanation: 111 is the 15th largest element in t...
250
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [221, 146, 127, 76, 276, 158, 142, 70, 188, 47, 177, 214, 273, 145, 116, 64, 245, 253, 217, 78], k=2 273 [213, 158, 296, 17, 126, 62, 257, 15, 154, 81, 151, 193, 127, 102, 12, 186, 31, 199, 50,...
248
0
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example is below. Q: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 A: 111 Rationale: 111 is the 15th largest element in the list. Q: [2...
144
9
NIv2
task1194_kth_largest_element
fs_opt
TASK DEFINITION: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. PROBLEM: [52, 203, 258, 170, 201, 122, 166, 110, 85, 176, 285, 113, 19, 18, 253, 279, 16, 259, 257, 89], k=15 SOLUTION: 89 PROBLEM: [122, 192, 254, 187, 244, 116, 87, 90, 230, ...
298
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [EX Q]: [229, 42, 38, 120, 33, 204, 150, 227, 268, 14, 45, 132, 220, 181, 233, 115, 121, 245, 180, 111], k=20 [EX A]: 14 [EX Q]: [295, 25, 75, 12, 62, 227, 129, 220, 158, 10, 219, 58, 50, 167, ...
256
6
NIv2
task1194_kth_largest_element
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 of integers and an integer k. You need to find the kth largest element in the input list. [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 15...
167
0
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example input: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example output: 111 Example explanation: 111 is the 15th largest element in t...
24
3
NIv2
task1194_kth_largest_element
fs_opt
TASK DEFINITION: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. PROBLEM: [171, 73, 239, 246, 40, 240, 262, 77, 244, 131, 119, 194, 199, 80, 42, 164, 45, 245, 108, 92], k=10 SOLUTION: 164 PROBLEM: [14, 269, 11, 175, 243, 237, 297, 77, 272, 2...
132
8
NIv2
task1194_kth_largest_element
fs_opt
Detailed Instructions: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. See one example below: Problem: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution: 111 Explanation: 111 is the ...
243
4
NIv2
task1194_kth_largest_element
fs_opt
instruction: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. question: [241, 16, 229, 221, 230, 250, 220, 289, 267, 42, 244, 252, 247, 177, 206, 14, 35, 209, 120, 281], k=18 answer: 35 question: [281, 33, 73, 228, 227, 126, 112, 171, 58, 90,...
243
9
NIv2
task1194_kth_largest_element
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 of integers and an integer k. You need to find the kth largest element in the input list. [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 15...
69
0
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Input: Consider Input: [127, 150, 271, 167, 241, 211, 97, 74, 248, 131, 147, 116, 258, 81, 185, 65, 73, 118, 285, 266], k=5 Output: 248 Input: Consider Input: [279, 274, 55, 280, 63, 76, 193,...
Output: 112
2
NIv2
task1194_kth_largest_element
fs_opt
Given the task definition, example input & output, solve the new input case. In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Output:...
83
1
NIv2
task1194_kth_largest_element
fs_opt
TASK DEFINITION: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. PROBLEM: [229, 42, 38, 120, 33, 204, 150, 227, 268, 14, 45, 132, 220, 181, 233, 115, 121, 245, 180, 111], k=20 SOLUTION: 14 PROBLEM: [25, 94, 191, 176, 47, 284, 230, 285, 163, ...
179
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example is below. Q: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 A: 111 Rationale: 111 is the 15th largest element in the list. Q: [1...
270
9
NIv2
task1194_kth_largest_element
fs_opt
TASK DEFINITION: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. PROBLEM: [100, 154, 127, 273, 78, 40, 163, 203, 252, 155, 216, 108, 205, 257, 156, 20, 178, 266, 145, 107], k=7 SOLUTION: 203 PROBLEM: [267, 175, 73, 279, 67, 288, 221, 86, 275...
291
8
NIv2
task1194_kth_largest_element
fs_opt
instruction: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. question: [270, 194, 176, 246, 186, 76, 20, 226, 151, 260, 157, 263, 265, 141, 123, 225, 98, 48, 25, 67], k=20 answer: 20 question: [264, 228, 111, 62, 246, 283, 167, 184, 190, 38,...
130
9
NIv2
task1194_kth_largest_element
fs_opt
Detailed Instructions: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. See one example below: Problem: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution: 111 Explanation: 111 is the ...
212
4
NIv2
task1194_kth_largest_element
fs_opt
Detailed Instructions: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. See one example below: Problem: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution: 111 Explanation: 111 is the ...
168
4
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Let me give you an example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 The answer to this example can be: 111 Here is why: 111 is the 1...
293
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [160, 55, 248, 241, 71, 146, 293, 175, 154, 120, 101, 185, 225, 51, 75, 135, 91, 164, 224, 129], k=15 101 [175, 67, 115, 224, 278, 34, 72, 53, 68, 99, 174, 16, 198, 126, 270, 144, 69, 131, 45, ...
203
0
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example input: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example output: 111 Example explanation: 111 is the 15th largest element in t...
64
3
NIv2
task1194_kth_largest_element
fs_opt
Teacher: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Teacher: Now, understand the problem? If you are still confused, see the following example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132...
64
2
NIv2
task1194_kth_largest_element
fs_opt
Teacher: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Teacher: Now, understand the problem? If you are still confused, see the following example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132...
61
2
NIv2
task1194_kth_largest_element
fs_opt
TASK DEFINITION: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. PROBLEM: [154, 185, 180, 217, 200, 49, 133, 203, 10, 250, 256, 289, 69, 260, 186, 149, 244, 271, 225, 178], k=2 SOLUTION: 271 PROBLEM: [30, 172, 203, 140, 208, 163, 42, 212, 17...
61
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example input: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example output: 111 Example explanation: 111 is the 15th largest element in t...
17
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example Input: [262, 271, 59, 244, 92, 77, 248, 275, 68, 118, 222, 102, 48, 167, 206, 257, 106, 259, 148, 12], k=10 Example Output: 167 Example Input: [295, 25, 75, 12, 62, 227, 129, 220, 158, ...
155
3
NIv2
task1194_kth_largest_element
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 of integers and an integer k. You need to find the kth largest element in the input list. [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 15...
155
0
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Q: [163, 251, 187, 53, 156, 212, 145, 230, 76, 266, 82, 85, 99, 43, 29, 273, 101, 96, 35, 189], k=19 A: 35 **** Q: [183, 36, 88, 201, 229, 26, 21, 182, 12, 197, 148, 117, 213, 261, 86, 97, 82, ...
24 ****
4
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Let me give you an example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 The answer to this example can be: 111 Here is why: 111 is the 1...
24
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example Input: [194, 39, 151, 113, 173, 176, 284, 76, 274, 162, 65, 262, 188, 54, 154, 36, 105, 201, 191, 226], k=20 Example Output: 36 Example Input: [14, 269, 11, 175, 243, 237, 297, 77, 272,...
296
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [EX Q]: [174, 265, 102, 299, 26, 298, 117, 202, 63, 249, 75, 86, 183, 256, 236, 277, 122, 224, 264, 171], k=10 [EX A]: 202 [EX Q]: [248, 278, 68, 75, 20, 46, 193, 283, 217, 111, 120, 77, 201, 4...
210
6
NIv2
task1194_kth_largest_element
fs_opt
TASK DEFINITION: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. PROBLEM: [52, 39, 155, 219, 95, 73, 207, 209, 63, 11, 123, 266, 126, 192, 169, 146, 26, 38, 43, 165], k=14 SOLUTION: 63 PROBLEM: [274, 108, 167, 131, 93, 206, 151, 159, 90, 170...
149
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example Input: [202, 81, 91, 150, 255, 227, 95, 48, 128, 254, 117, 228, 183, 61, 243, 259, 196, 148, 221, 274], k=11 Example Output: 183 Example Input: [100, 196, 26, 297, 13, 125, 214, 69, 139...
244
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example input: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example output: 111 Example explanation: 111 is the 15th largest element in t...
199
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example Input: [72, 258, 46, 125, 104, 92, 48, 73, 174, 94, 229, 143, 193, 244, 39, 100, 271, 295, 47, 64], k=12 Example Output: 94 Example Input: [255, 270, 154, 199, 18, 122, 289, 285, 179, 2...
193
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Let me give you an example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 The answer to this example can be: 111 Here is why: 111 is the 1...
193
8
NIv2
task1194_kth_largest_element
fs_opt
Teacher: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Teacher: Now, understand the problem? If you are still confused, see the following example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132...
232
2
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Ex Input: [263, 254, 111, 168, 142, 236, 193, 58, 89, 212, 28, 175, 62, 92, 287, 87, 110, 252, 213, 226], k=11 Ex Output: 168 Ex Input: [276, 188, 261, 277, 93, 230, 233, 22, 212, 97, 204, 40...
232
1
NIv2
task1194_kth_largest_element
fs_opt
instruction: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. question: [16, 10, 255, 45, 203, 197, 168, 85, 266, 245, 232, 298, 199, 26, 181, 202, 214, 82, 283, 120], k=1 answer: 298 question: [96, 236, 17, 279, 218, 255, 222, 18, 91, 99, 85...
36
9
NIv2
task1194_kth_largest_element
fs_opt
Part 1. Definition In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Part 2. Example [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Answer: 111 Explanation: 111 is the 15th largest element i...
181
7
NIv2
task1194_kth_largest_element
fs_opt
Given the task definition, example input & output, solve the new input case. In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Output:...
147
1
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution is here: 111 Explanation: 111 is the 15th largest element in the list. ...
170
6
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example solution: 111 Example explanation: 111 is the 15th largest element in the li...
Solution: 282
5
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [265, 266, 70, 83, 280, 46, 184, 127, 114, 242, 188, 160, 270, 98, 95, 119, 112, 263, 109, 86], k=15 98 [232, 30, 288, 47, 34, 183, 131, 91, 172, 265, 178, 235, 68, 286, 255, 243, 198, 246, 290...
274
0
NIv2
task1194_kth_largest_element
fs_opt
Given the task definition, example input & output, solve the new input case. In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Output:...
148
1
NIv2
task1194_kth_largest_element
fs_opt
Detailed Instructions: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. See one example below: Problem: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution: 111 Explanation: 111 is the ...
48
4
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. -------- Question: [51, 228, 298, 227, 49, 137, 197, 222, 280, 117, 69, 53, 299, 196, 179, 169, 54, 42, 147, 95], k=14 Answer: 95 Question: [125, 193, 215, 227, 176, 50, 92, 145, 258, 271, 203...
180
7
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. One example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution is here: 111 Explanation: 111 is the 15th largest element in the list. ...
28
6
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Q: [25, 248, 235, 251, 20, 136, 41, 78, 96, 268, 122, 88, 271, 85, 97, 93, 126, 295, 247, 54], k=17 A: 54 **** Q: [185, 87, 54, 99, 176, 135, 37, 207, 276, 296, 282, 241, 216, 290, 71, 193, 178...
99 ****
4
NIv2
task1194_kth_largest_element
fs_opt
Part 1. Definition In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Part 2. Example [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Answer: 111 Explanation: 111 is the 15th largest element i...
248
7
NIv2
task1194_kth_largest_element
fs_opt
Part 1. Definition In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Part 2. Example [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Answer: 111 Explanation: 111 is the 15th largest element i...
257
7
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example Input: [82, 197, 212, 266, 30, 149, 57, 227, 294, 299, 176, 21, 31, 214, 224, 117, 181, 19, 37, 42], k=1 Example Output: 299 Example Input: [129, 167, 275, 150, 232, 198, 22, 115, 121, ...
64
3
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Example solution: 111 Example explanation: 111 is the 15th largest element in the li...
Solution: 40
5
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Ex Input: [51, 228, 298, 227, 49, 137, 197, 222, 280, 117, 69, 53, 299, 196, 179, 169, 54, 42, 147, 95], k=14 Ex Output: 95 Ex Input: [190, 112, 33, 255, 283, 269, 149, 44, 226, 266, 63, 118,...
142
1
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [Q]: [110, 211, 233, 24, 162, 242, 151, 10, 15, 119, 118, 91, 56, 217, 144, 203, 276, 299, 155, 265], k=18 [A]: 24 [Q]: [183, 241, 41, 65, 87, 212, 263, 268, 46, 107, 230, 154, 192, 238, 177, ...
169
5
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Example Input: [177, 121, 59, 21, 66, 161, 236, 295, 67, 299, 220, 195, 166, 193, 155, 277, 94, 44, 84, 254], k=5 Example Output: 236 Example Input: [34, 138, 133, 246, 122, 168, 258, 234, 45, ...
282
3
NIv2
task1194_kth_largest_element
fs_opt
Detailed Instructions: In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. See one example below: Problem: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 Solution: 111 Explanation: 111 is the ...
114
4
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. [EX Q]: [96, 236, 17, 279, 218, 255, 222, 18, 91, 99, 85, 105, 108, 133, 284, 245, 58, 139, 215, 221], k=2 [EX A]: 279 [EX Q]: [296, 211, 166, 25, 64, 124, 108, 215, 93, 277, 67, 126, 24, 15, 2...
156
6
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Let me give you an example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 The answer to this example can be: 111 Here is why: 111 is the 1...
76
8
NIv2
task1194_kth_largest_element
fs_opt
In this task, you are given a list of integers and an integer k. You need to find the kth largest element in the input list. Let me give you an example: [128, 277, 83, 280, 193, 19, 111, 154, 41, 292, 29, 53, 232, 153, 131, 151, 121, 262, 270, 132], k=15 The answer to this example can be: 111 Here is why: 111 is the 1...
19
8
NIv2
task1194_kth_largest_element
fs_opt