inputs stringlengths 260 531 | targets stringlengths 2 32 | _template_idx int64 0 9 | _task_source stringclasses 1
value | _task_name stringclasses 1
value | _template_type stringclasses 2
values |
|---|---|---|---|---|---|
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [6, 5, 0, 0, 7, 1, 2, 0, 7, 0]
Answer: [6, 5, 1, 2]
Qu... | [2, 4, 1, 7, 0]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Part 1. Definition
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Part 2. Example
[0,1,0,2,5,1]
Answer: [2,5]
Explanation: ... | [7, 1, 0, 2] | 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[6, 5, 3, 0, 7, 6]
[5, 3, 0, 7]
[2, 5, 3, 5, 6]
[2, 3, 6]
[0, 3, 3, 0, 0,... | [5, 2]
| 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Input: Consider Input: [1, 0, 6, 7, 3]
Output: [1, 0, 6, 7, 3]
Input: Co... | Output: [6, 5]
| 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Detailed Instructions: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
See one example below:
Problem: [0,1,0,2,5,1]
Solutio... | [6, 5] | 4 | NIv2 | task097_conala_remove_duplicates | fs_opt |
TASK DEFINITION: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
PROBLEM: [0, 4, 2, 0, 6, 2]
SOLUTION: [4, 6]
PROBLEM: [6,... | [0, 3, 4]
| 8 | NIv2 | task097_conala_remove_duplicates | fs_opt |
TASK DEFINITION: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
PROBLEM: [2, 6, 3, 7, 7, 2, 5, 7]
SOLUTION: [6, 3, 5]
PRO... | [4, 0]
| 8 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Input: Consider Input: [3, 5, 4, 3, 4, 1, 3, 5, 0, 1]
Output: [0]
Input:... | Output: [2, 5, 3]
| 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example input: [0,1,0,2,5,1]
Example output: [2,5]
Example explanation: The... | [1, 5] | 3 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example: [0,1,0,2,5,1]
Solution is here: [2,5]
Explanation: The only ele... | [4, 5, 2] | 6 | NIv2 | task097_conala_remove_duplicates | 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 will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be number... | [4, 6, 0] | 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Input: Consider Input: [0, 0, 1, 2, 5, 6, 2, 6]
Output: [1, 5]
Input: Co... | Output: [1, 5]
| 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Ex Input:
[1, 2, 4, 0, 6, 4, 1, 5, 6]
Ex Output:
[2, 0, 5]
Ex Input:
[4,... | [7, 6]
| 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Let me give you an example: [0,1,0,2,5,1]
The answer to this example can be... | [3, 5, 0, 4] | 8 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example is below.
Q: [0,1,0,2,5,1]
A: [2,5]
Rationale: The only elements... | [0, 1, 5, 2, 7] | 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example is below.
Q: [0,1,0,2,5,1]
A: [2,5]
Rationale: The only elements... | [6, 4, 1, 3, 2] | 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [4, 3, 0, 3, 1, 0, 3]
Answer: [4, 1]
Question: [1, 2, ... | [7, 6, 3, 4, 5, 0, 2]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [3, 1, 3, 2, 4, 4, 6, 3, 1, 7]
Answer: [2, 6, 7]
Quest... | [2, 6, 0, 3]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example: [0,1,0,2,5,1]
Example solution: [2,5]
Example explanation: The only... | Solution: [7, 6, 4, 1] | 5 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Detailed Instructions: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
See one example below:
Problem: [0,1,0,2,5,1]
Solutio... | [2, 6, 0, 3] | 4 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[Q]: [1, 1, 6, 0, 7, 2, 3, 6, 0, 4]
[A]: [7, 2, 3, 4]
[Q]: [4, 0, 4, 5, 7... | [6, 5]
| 5 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Q: [3, 7, 1, 3, 1, 6, 6, 2, 5]
A: [7, 2, 5]
****
Q: [0, 7, 7, 2, 0, 5, 0, ... | [4, 1]
****
| 4 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Let me give you an example: [0,1,0,2,5,1]
The answer to this example can be... | [5, 3, 2, 0, 6, 4] | 8 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Detailed Instructions: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
See one example below:
Problem: [0,1,0,2,5,1]
Solutio... | [1, 5, 4] | 4 | NIv2 | task097_conala_remove_duplicates | fs_opt |
instruction:
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
question:
[5, 7, 1, 0, 6]
answer:
[5, 7, 1, 0, 6]
question:
[... | [6, 7, 5, 3]
| 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Ex Input:
[6, 0, 5, 5, 7, 6, 4, 5, 1, 4]
Ex Output:
[0, 7, 1]
Ex Input:
... | [5, 3, 2, 0, 6, 4]
| 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Let me give you an example: [0,1,0,2,5,1]
The answer to this example can be... | [6, 7, 5, 3] | 8 | NIv2 | task097_conala_remove_duplicates | 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 will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be number... | [3, 0, 1, 6, 7] | 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example: [0,1,0,2,5,1]
Solution is here: [2,5]
Explanation: The only ele... | [0] | 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[EX Q]: [2, 1, 0, 6, 7, 1, 5, 6, 4]
[EX A]: [2, 0, 7, 5, 4]
[EX Q]: [0, 0,... | [2, 5]
| 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Input: Consider Input: [1, 2, 4, 7, 2]
Output: [1, 4, 7]
Input: Consider... | Output: [0, 2, 3, 7, 1]
| 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Teacher: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Teacher: Now, understand the problem? If you are still confused, se... | [7, 5, 4] | 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example is below.
Q: [0,1,0,2,5,1]
A: [2,5]
Rationale: The only elements... | [3, 6, 0] | 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.... | [1] | 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [0, 3, 4, 1, 7, 4, 4, 1]
Answer: [0, 3, 7]
Question: [... | [7, 2, 5]
| 7 | NIv2 | task097_conala_remove_duplicates | 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 will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be number... | [4, 7, 0, 6, 5] | 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [3, 0, 3, 7, 5, 4, 1, 3, 5, 0]
Answer: [7, 4, 1]
Quest... | [4, 7, 0, 6, 5]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [4, 6, 7, 2, 4, 6, 6]
Answer: [7, 2]
Question: [6, 7, ... | [1]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example is below.
Q: [0,1,0,2,5,1]
A: [2,5]
Rationale: The only elements... | [3, 6, 2] | 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.... | [1, 2, 6, 0] | 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Let me give you an example: [0,1,0,2,5,1]
The answer to this example can be... | [0, 7, 6] | 8 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [5, 0, 3, 2, 2, 3, 1, 2, 7, 4]
Answer: [5, 0, 1, 7, 4]
... | [5, 6, 3, 1]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [7, 3, 2, 7, 5, 0, 4, 5, 3]
Answer: [2, 0, 4]
Question... | [0, 7, 6]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Q: [5, 4, 4, 6, 1, 7, 2]
A: [5, 6, 1, 7, 2]
****
Q: [4, 7, 3, 7, 1, 7]
A:... | [6, 2, 4]
****
| 4 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[EX Q]: [4, 1, 2, 1, 4, 2]
[EX A]: []
[EX Q]: [2, 2, 4, 7, 3, 5, 3, 6, 3, ... | [6, 3, 1, 5]
| 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example Input: [2, 2, 6, 5, 3, 3, 7]
Example Output: [6, 5, 7]
Example Inp... | [2, 0]
| 3 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example Input: [1, 0, 1, 0, 0, 0, 0, 1, 4]
Example Output: [4]
Example Inp... | [5, 7, 4, 6]
| 3 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example: [0,1,0,2,5,1]
Example solution: [2,5]
Example explanation: The only... | Solution: [0, 5, 1, 7, 2, 6] | 5 | NIv2 | task097_conala_remove_duplicates | fs_opt |
instruction:
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
question:
[6, 7, 3, 6, 3, 4, 4, 0, 1]
answer:
[7, 0, 1]
quest... | [7, 6, 5]
| 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Detailed Instructions: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
See one example below:
Problem: [0,1,0,2,5,1]
Solutio... | [6, 1, 0, 2] | 4 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Teacher: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Teacher: Now, understand the problem? If you are still confused, se... | [3, 7] | 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example: [0,1,0,2,5,1]
Example solution: [2,5]
Example explanation: The only... | Solution: [3, 7, 5] | 5 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.... | [3, 2, 0, 4] | 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
instruction:
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
question:
[7, 2, 2, 3, 4]
answer:
[7, 3, 4]
question:
[2, 7, ... | [3, 2, 0, 4]
| 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
TASK DEFINITION: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
PROBLEM: [3, 0, 3, 7, 5, 4, 1, 3, 5, 0]
SOLUTION: [7, 4, 1... | [6, 1, 0, 2]
| 8 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Teacher: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Teacher: Now, understand the problem? If you are still confused, se... | [2, 1] | 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example Input: [6, 3, 1, 0, 2, 3, 3, 2, 1, 5]
Example Output: [6, 0, 5]
Ex... | [2, 1]
| 3 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [6, 2, 0, 4, 3, 5, 2, 5, 1, 7]
Answer: [6, 0, 4, 3, 1, 7... | [6, 0, 1]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[6, 6, 2, 3, 2, 6, 6, 6]
[3]
[2, 1, 0, 6, 7, 1, 5, 6, 4]
[2, 0, 7, 5, 4]
... | [1, 2, 0, 6, 5]
| 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example: [0,1,0,2,5,1]
Solution is here: [2,5]
Explanation: The only ele... | [4, 7, 0] | 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Ex Input:
[6, 1, 2, 3, 4, 2, 7]
Ex Output:
[6, 1, 3, 4, 7]
Ex Input:
[1,... | [1, 3, 6, 7, 0]
| 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [0, 1, 4, 1, 4, 3, 1, 0, 6]
Answer: [3, 6]
Question: [... | [5, 1, 2, 4]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example Input: [1, 1, 1, 2, 2, 5, 0, 5, 0]
Example Output: []
Example Inpu... | [5, 0]
| 3 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[EX Q]: [1, 6, 7, 0, 0, 1, 4, 4, 3]
[EX A]: [6, 7, 3]
[EX Q]: [1, 6, 2, 1,... | [4, 3, 5]
| 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Part 1. Definition
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Part 2. Example
[0,1,0,2,5,1]
Answer: [2,5]
Explanation: ... | [7, 4, 5] | 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Part 1. Definition
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Part 2. Example
[0,1,0,2,5,1]
Answer: [2,5]
Explanation: ... | [6, 5, 4] | 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Q: [5, 3, 4, 5, 6, 2]
A: [3, 4, 6, 2]
****
Q: [1, 7, 4, 7, 4, 4, 5, 7]
A:... | [6, 0]
****
| 4 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Input: Consider Input: [3, 1, 3, 2, 4, 4, 6, 3, 1, 7]
Output: [2, 6, 7]
... | Output: [0, 4, 1, 7, 3]
| 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.... | [3, 4, 5] | 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [2, 4, 3, 2, 4, 2, 1, 6, 1, 2]
Answer: [3, 6]
Question... | [1, 5, 6, 3]
| 7 | NIv2 | task097_conala_remove_duplicates | 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 will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be number... | [6, 4, 1, 2] | 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
TASK DEFINITION: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
PROBLEM: [5, 4, 2, 4, 7, 0, 4, 6]
SOLUTION: [5, 2, 7, 0, 6... | [0, 5]
| 8 | NIv2 | task097_conala_remove_duplicates | fs_opt |
instruction:
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
question:
[5, 3, 3, 1, 2, 7, 2]
answer:
[5, 1, 7]
question:
[... | [6, 4, 1, 2]
| 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [2, 2, 4, 7, 3, 5, 3, 6, 3, 3]
Answer: [4, 7, 5, 6]
Qu... | [1]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example: [0,1,0,2,5,1]
Solution is here: [2,5]
Explanation: The only ele... | [4, 6, 3] | 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example Input: [2, 1, 1, 2, 5, 7, 0, 7]
Example Output: [5, 0]
Example Inp... | [5, 1, 2, 3, 4]
| 3 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Ex Input:
[6, 6, 2, 6, 3, 4]
Ex Output:
[2, 3, 4]
Ex Input:
[2, 4, 6, 3,... | [2, 7, 1, 5, 4, 6]
| 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example input: [0,1,0,2,5,1]
Example output: [2,5]
Example explanation: The... | [7] | 3 | NIv2 | task097_conala_remove_duplicates | 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 will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be number... | [2, 4] | 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Given the task definition, example input & output, solve the new input case.
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.... | [6] | 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example: [0,1,0,2,5,1]
Solution is here: [2,5]
Explanation: The only ele... | [3] | 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example: [0,1,0,2,5,1]
Example solution: [2,5]
Example explanation: The only... | Solution: [6, 0] | 5 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Teacher: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Teacher: Now, understand the problem? If you are still confused, se... | [0, 4, 6] | 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example: [0,1,0,2,5,1]
Solution is here: [2,5]
Explanation: The only ele... | [2, 1] | 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [4, 1, 0, 2, 0, 0]
Answer: [4, 1, 2]
Question: [4, 1, ... | [4, 2, 0, 7, 3, 6, 1]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
--------
Question: [0, 1, 6, 6, 6]
Answer: [0, 1]
Question: [6, 5, 0, 0, ... | [1, 5, 4]
| 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Part 1. Definition
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Part 2. Example
[0,1,0,2,5,1]
Answer: [2,5]
Explanation: ... | [0, 3] | 7 | NIv2 | task097_conala_remove_duplicates | fs_opt |
TASK DEFINITION: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
PROBLEM: [6, 4, 4, 0, 5, 1, 7, 1, 3, 1]
SOLUTION: [6, 0, 5... | [0, 6, 2]
| 8 | NIv2 | task097_conala_remove_duplicates | 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 will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be number... | [4, 1, 3] | 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example is below.
Q: [0,1,0,2,5,1]
A: [2,5]
Rationale: The only elements... | [1, 4, 3, 6] | 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[Q]: [1, 4, 5, 5, 0, 1, 2, 6, 5, 0]
[A]: [4, 2, 6]
[Q]: [7, 4, 5, 3, 5, 4... | [7, 4, 1, 0, 2]
| 5 | NIv2 | task097_conala_remove_duplicates | fs_opt |
instruction:
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
question:
[5, 3, 0, 7, 0, 1, 4]
answer:
[5, 3, 7, 1, 4]
quest... | [4, 1, 3]
| 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Q: [2, 7, 1, 3, 5, 2, 1]
A: [7, 3, 5]
****
Q: [3, 6, 5, 1, 7, 7, 3, 5, 0]
... | [6]
****
| 4 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example: [0,1,0,2,5,1]
Solution is here: [2,5]
Explanation: The only ele... | [7] | 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Example Input: [5, 4, 4, 6, 1, 7, 2]
Example Output: [5, 6, 1, 7, 2]
Examp... | [0, 1]
| 3 | NIv2 | task097_conala_remove_duplicates | 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 will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be number... | [1, 4] | 0 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Teacher: In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Teacher: Now, understand the problem? If you are still confused, se... | [4, 3] | 2 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
Ex Input:
[4, 3, 0, 3, 1, 0, 3]
Ex Output:
[4, 1]
Ex Input:
[3, 6, 7, 1,... | [6, 7, 4, 2]
| 1 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
One example is below.
Q: [0,1,0,2,5,1]
A: [2,5]
Rationale: The only elements... | [5, 1, 7, 6, 4] | 9 | NIv2 | task097_conala_remove_duplicates | fs_opt |
In this task you will be given a list of numbers and you should remove all duplicates in the list. If every number is repeated in the list an empty list should be returned. Your list should be numbers inside brackets, just like the given list.
[EX Q]: [1, 0, 1, 0, 0, 0, 0, 1, 4]
[EX A]: [4]
[EX Q]: [4, 1, 6, 4, 2, 5,... | [7]
| 6 | NIv2 | task097_conala_remove_duplicates | fs_opt |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.