input
stringlengths 577
625
| output
sequencelengths 1
1
| id
stringlengths 40
40
|
---|---|---|
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-27, 41, -46, 10, 15, -68, -51]
Output:
| [
"[41, -46, 10, -68]"
] | task370-c973b1026d424bfc8c8674e5759d2dda |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [35, -50, 4, 15, 40, 12, -72, -28, -21, 24, 92]
Output:
| [
"[35, -50, 4, 40, -28, 92]"
] | task370-285c09e0083043109ede8153cde25882 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-31, 12]
Output:
| [
"[-31]"
] | task370-9650993a746d4d23a34ecb8779aa39fd |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [5, -87]
Output:
| [
"[5]"
] | task370-d9aaff9a3c4140209c26b1a5674ab28a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [1, -71, 79, 53, -4, -74, 88]
Output:
| [
"[1, -71, 79, 53, -4, -74, 88]"
] | task370-58e076b711d84712bee027001b50acec |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [65, -97, -40, -65, 36, 88, 0, -55, 78, 82, -38]
Output:
| [
"[65, -97, -40, -65, 88, -55, 82, -38]"
] | task370-2204bfa8ede0414dba5d08f47157628e |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [67, -57]
Output:
| [
"[67]"
] | task370-95d24624496b443485b7abea89814801 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-90, 32, -97, -29, -1, 19, 21, 93, -39, 89]
Output:
| [
"[32, -97, -29, -1, 19, 89]"
] | task370-44c07eb712b445af8c8141999da72642 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [19, -81, -78, -9, 42, -45]
Output:
| [
"[19]"
] | task370-b7217b964cc440c9935ca5e05526cfa9 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [85, -17, 94, 70, -81, -14, -73, 80, -6, -53, 63]
Output:
| [
"[85, -17, 94, 70, -14, -73, 80, -53]"
] | task370-e8ea44c333ea4db5badf667fa443ef76 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [40, 89]
Output:
| [
"[40, 89]"
] | task370-005d8b48dd0147bd8f19f4ecf29b4e69 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-100, -66, 4, 72, 7, 44, -74, 88, -56, 70, 58]
Output:
| [
"[-100, 4, 7, 44, -74, 88, -56, 70, 58]"
] | task370-c5357c20898a40afb558ee0ccb5ba88f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-99, 81, 43, -82, 97, 92, -55, 57, -96, 85]
Output:
| [
"[43, -82, 97, 92, -55, 85]"
] | task370-50d48cd2e39d4acc86aab7eeacc9f641 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [61, -38, -79, -31, 19, -40, -5, -88]
Output:
| [
"[61, -38, -79, -31, 19, -40, -5, -88]"
] | task370-47d3855d065340239b140da1fe7e5960 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [52, -95, -22, 14, -29, -65, -60, 1]
Output:
| [
"[52, -95, -22, 14, -29, -65, 1]"
] | task370-b92ba46b43af4bc0a81eb39a9b56456b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-59, 68, -41, -73, -45, 95]
Output:
| [
"[-59, 68, -41, -73, 95]"
] | task370-ea3e27f9f93e4c129d734d29d540189c |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-16, 5, 91, 46, 8, 23, -40, -9, -71, -10, 8]
Output:
| [
"[-16, 5, 91, 46, 8, 23, -40, -71, -10, 8]"
] | task370-e24778a2ec1b4dc8984171c57e15022e |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [10, 17, -46, -99, -6, 64, 70, -18, 18, -83]
Output:
| [
"[10, 17, -46, 64, 70, -83]"
] | task370-7ae7984595d84ec79f0471158cfaeb53 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [54, 92]
Output:
| [
"[92]"
] | task370-0c0cdf4d98c74892a96489e6b9572c19 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-66, -34, 39, 75, -49, -54, -25, 58, 40, -35]
Output:
| [
"[-34, -49, -25, 58, 40, -35]"
] | task370-a42d6ce3f89c405c89b82a710627c036 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-88, 70, -49]
Output:
| [
"[-88, 70, -49]"
] | task370-4504ac46d7b141f3bc0097d97c9f472b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [97, 46, -32, 0, 26, 31, -71]
Output:
| [
"[97, 46, -32, 26, 31, -71]"
] | task370-8f67e550f965408d86d17254a41bd726 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [68, 16, 77, 14, 79]
Output:
| [
"[68, 16, 77, 14, 79]"
] | task370-54e535a19ef54fada3ea54f251a42aef |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-39, -16, 88, -91, -64, 60, -94]
Output:
| [
"[-16, 88, -91, -64, -94]"
] | task370-4109c3bb9c4f44bd87e2c7cc6dcf0c27 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [46, 24, 37, -83, -6, -35, -51]
Output:
| [
"[46, 37, -83, -35]"
] | task370-f4c258f1cbf047459600b8ce88d1e7c4 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [49, -73, -78, 56]
Output:
| [
"[49, -73, 56]"
] | task370-177c99531fb74b22a98b1c2554166e6b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-33, -83, -75, 7]
Output:
| [
"[-83, 7]"
] | task370-b74fe11a140c44e1aa5b8b1b6f17daef |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [50, -99, -88, -56, 32, -38, -3, 22]
Output:
| [
"[50, -88, -56, 32, -38, 22]"
] | task370-38186cce34fe4b769a4690564d624e8f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-36, -23]
Output:
| [
"[-23]"
] | task370-bf4b9ef2a783445781010744588f7ae6 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-5, -60, 17, -23, -25, 86, -15]
Output:
| [
"[-5, 17, -23, -25, 86]"
] | task370-bbaf85f47c694b97b8e39e7ba8f48b9d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-100, -51, -49, 42, -65, -98, 64]
Output:
| [
"[-100, -49, -65, -98, 64]"
] | task370-6462dc9ba6f2432c8549d1206f2d929c |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [87, -61, -62, 81, 77, -74, -17]
Output:
| [
"[-61, -62, 77, -74, -17]"
] | task370-848e7249bfc642e8aafd62e360481243 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [5, 44, 40, -81, 86, 53, 27]
Output:
| [
"[5, 44, 40, 86, 53]"
] | task370-d83b37d47878413a92e9ce1ccdace01f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-100, 10, 1, -6, 38, 86, 79, -3, 71]
Output:
| [
"[-100, 10, 1, 38, 86, 79, 71]"
] | task370-89eb1389e02e4b4d8ccf565afac313c4 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-12, 9, -82]
Output:
| [
"[-82]"
] | task370-1382d2eb927c4ba0982f31304c394b90 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [78, -11, -32, 76]
Output:
| [
"[-11, -32, 76]"
] | task370-a50d220deab044aea448ad83ba6c1a55 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [58, 98, 2, 85, 67, -77, 94, 29, -56, 7]
Output:
| [
"[58, 98, 2, 85, 67, -77, 94, 29, -56, 7]"
] | task370-0e4426b4f72149919773db89091ee394 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-85, 33, -56, -40, 79, -65, 13, -78, 45, 50, -73]
Output:
| [
"[-85, -56, -40, 79, -65, 13, 50, -73]"
] | task370-9f32fb52757f47d495e9ff7ba782c8ea |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [25, 85, 75, 8, 4, 41, 79, -12, 17, -34]
Output:
| [
"[25, 85, 8, 4, 41, 79, 17, -34]"
] | task370-0b0b81e1de5a4a98ae2c88ba404e76c2 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [36, -84, 32, -16, 79, -80, 6, 49, -79]
Output:
| [
"[32, -16, 79, -80, 49, -79]"
] | task370-a6d70faf13df460d956137fd375ed723 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-34, 27, -17, -64, 21, -18]
Output:
| [
"[-34, -17, -64]"
] | task370-b097e1d86b754e889fd8529a981cda38 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-85, -49, -84, 7, -48, 56, -13, 2, 74, -50]
Output:
| [
"[-85, -49, 7, 56, -13, 2, 74, -50]"
] | task370-ccccd0c60c574529a27b819ce5f20cd1 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-76, -8, -14]
Output:
| [
"[-76, -8, -14]"
] | task370-147870e680dd4d9fb47d595c781d0277 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [60, -15, 15, -17, 83, -48, 80, 98, -83, -59, -38]
Output:
| [
"[-17, 83, 80, 98, -83, -59, -38]"
] | task370-fbfbf45bde7c4e45a270ec51ce435f96 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [13, -71]
Output:
| [
"[13, -71]"
] | task370-cd159f8e4429446db1e76e0c8f4998d8 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [76, -47]
Output:
| [
"[76, -47]"
] | task370-d1eee0de5ef04b16a7acaa677f8df4f2 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [67, -28, -87, -67, 46, 92, 38, -70, 39, -9]
Output:
| [
"[67, -28, -67, 46, 92, 38, -70]"
] | task370-74fb5ba983bf496a9cebba12234df86b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-23, 71, -61, 31, -61, -35, 16]
Output:
| [
"[-23, 71, -61, 31, -61, -35, 16]"
] | task370-70b65a51aab9427abc9a7c207e19f83c |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [75, 59, -66, 85, 72, -30, 97, 86]
Output:
| [
"[59, 85, 97, 86]"
] | task370-5f7fe898c7f0469f96347b50a89ab88a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [34, 25, 71, 51, -13, -33, 82, 67, -52, 56]
Output:
| [
"[34, 25, 71, -13, 82, 67, -52, 56]"
] | task370-ad0c1215c3d544a28cb497d86a642b17 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-35, 98, 81, -54]
Output:
| [
"[-35, 98]"
] | task370-66397b647c744143a93c54824ac5214d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-10, -9, -88, -54]
Output:
| [
"[-10, -88]"
] | task370-2f0bc511de3749bba55d62acf4f01d1b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-61, 9, -6, 83, 20, -10, -2, -33]
Output:
| [
"[-61, 83, 20, -10, -2]"
] | task370-99eec697deb043f2ba0209470bc2ad6b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [30, -22, -94, -57, 1, -11, -99, 85]
Output:
| [
"[-22, -94, 1, -11, 85]"
] | task370-0c3ee346d470427787cfc01b526b4624 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [40, -69, 84, -77, 16, -14, 26, -3, 17]
Output:
| [
"[40, -77, 16, -14, 26, 17]"
] | task370-6d51bbd7ff0e47468d802e81e96cd98a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [35, 96, 80]
Output:
| [
"[35, 80]"
] | task370-32b8c8a130934ff5991ca4651010b49e |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [15, -33]
Output:
| [
"[]"
] | task370-a2ab4c57f00d4a72830eaf9c808a2725 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [86, 17]
Output:
| [
"[86, 17]"
] | task370-4e24370c9ce748e0a6f1ac56d5fa06b7 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [57, 36, -90]
Output:
| [
"[]"
] | task370-d738fb56a01e4212920402530dd6d31d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [79, 86, 7, 28]
Output:
| [
"[79, 86, 7, 28]"
] | task370-45225cb51b944a6c8e93c65c7273dd69 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [45, 38, 89, 50, -96, -34, 21, -49, -76, -24, -25]
Output:
| [
"[38, 89, 50, -34, -49, -76, -25]"
] | task370-97a647b08c8f4ee5bbe03c1befec6b40 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [9, -91, -96, 6, -57]
Output:
| [
"[-91]"
] | task370-9a3317ab29434362b33d611d170860c7 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [96, 99, 83]
Output:
| [
"[83]"
] | task370-d0220a56beee4cdaab8bdeec86be802c |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-23, 80, -2, 33, 46, 60, 97, -5, -41, -91]
Output:
| [
"[-23, 80, -2, 46, 97, -5, -41, -91]"
] | task370-5ed3e164152e485688e72fb86a2e8486 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [77, 90, -3, -1]
Output:
| [
"[77, -1]"
] | task370-015dc5a9b3d544b68da7a48a6a504cad |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [69, 29, -35, -39, 74, -82, -84]
Output:
| [
"[29, -35, 74, -82]"
] | task370-0a4fe7eee89045b58a2cbeada3a4b7bd |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-25, -44, -4, -97, 20, -3, 27, 2, 35, -72]
Output:
| [
"[-25, -44, -4, -97, 20, 2, 35]"
] | task370-ceaca43689754321b716c2994d0fe77d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-52, -98, -40, -8, -67, -52, 95, -19]
Output:
| [
"[-52, -98, -40, -8, -67, -52, 95, -19]"
] | task370-f1a7a6ea65894347bc7cf1ca394e24df |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-72, -35, 85, -65, -50, -7, -65, 38, 85, 93, -56]
Output:
| [
"[-35, 85, -65, -50, -7, -65, 38, 85, -56]"
] | task370-3a4f0cc64a064202b3ef804fc6dcb80b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-59, 13, 88, -85]
Output:
| [
"[-59, 13, 88, -85]"
] | task370-56842872618c4c3aa3f217e3b9941796 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [13, 33, 50, 50]
Output:
| [
"[13, 50, 50]"
] | task370-5875eb3c07ed4643bef65bb5c92557f8 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-27, 91, 77, 20, -70, -81]
Output:
| [
"[91, 77, 20, -70]"
] | task370-07338b7e3c314890ad19974f58091693 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [27, 18, 98, -43, -94, -57]
Output:
| [
"[98, -43, -94]"
] | task370-ebffaecc607f4d44afcf684c457efd5a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-22, 8, -21, 50, -31, 63, 46, -28, -20]
Output:
| [
"[-22, 8, 50, -31, 46, -28, -20]"
] | task370-6d4a4e69127f4232b4f8de0886184c8f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-3, 85, 12, -45, 64, -92, -8]
Output:
| [
"[85, 64, -92, -8]"
] | task370-3ba1e510ed4b400fbe95151436022ed7 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [53, -35, 38, -60, -45]
Output:
| [
"[53, -35, 38]"
] | task370-087d389aec35460daee9b249ee346398 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [7, -65, -76, -68, -95, 55, 92, 77, -58]
Output:
| [
"[7, -65, -76, -68, -95, 55, 92, 77, -58]"
] | task370-794d42e73c7b404097326795571751fb |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [39, 86, 26, -16, -38, -29]
Output:
| [
"[86, 26, -16, -38, -29]"
] | task370-92cd1fc50dfa417cb02cb2ac3cb84679 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [97, 72, 15, -68, -43, -60]
Output:
| [
"[97, -68, -43]"
] | task370-f6501056760a4b4297a580c7e62328a9 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [69, -3, 78, 79, 79]
Output:
| [
"[79, 79]"
] | task370-f740b071d65c4cd2b583d2fb08c8a3e0 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-52, -45, 43, -51, 54, -32, -47]
Output:
| [
"[-52, 43, -32, -47]"
] | task370-988e9729fc7d4d178848438fb92a386b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [85, 64, -91, 54, -30]
Output:
| [
"[85, 64, -91]"
] | task370-8d6e8850405845f89aed6237dc2502e2 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-65, -24, -17, 5, -10, -48, 99, 14, 55, 18, -88]
Output:
| [
"[-65, -17, 5, -10, 14, 55, -88]"
] | task370-d1704cfe6d9c4371b978582d00747b4a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-55, -88, -61, 76, -93, 32, -77, 26, 91]
Output:
| [
"[-55, -88, -61, 76, 32, -77, 26, 91]"
] | task370-302ad6e860584d12ad34d1e9f154757b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [34, -76, 66, 46, 59, 4, 92]
Output:
| [
"[34, -76, 46, 59, 4, 92]"
] | task370-70dadf56058b42ff869e9b51475c3adc |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-16, -29, 62, 28, 90, 52, -45, 87, 37]
Output:
| [
"[-16, -29, 62, 28, 52, 37]"
] | task370-e161b4f3fd604e5887e009e6fb8e473e |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-98, -3, -59]
Output:
| [
"[-98, -59]"
] | task370-677fc64819754c77ace7fa453568dfe9 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-7, -95, -41, -98, -63, -60, -42]
Output:
| [
"[-7, -95, -41, -98]"
] | task370-6d12a6cfd7bd4c7893f22f83edca7045 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [38, -7, 78, 26, -35, -32, -100, -32]
Output:
| [
"[38, -7, 26, -35, -32, -100, -32]"
] | task370-524cefe495334b8487ec13b5c6f8306f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [71, 62, 95, 30, 96, -96]
Output:
| [
"[71, 62, 95]"
] | task370-d3ad1c53e5a4445da7d27c18eb65fcd3 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-76, -15, -21, -6, -23, -62, -52, -39]
Output:
| [
"[-76, -23, -62, -52]"
] | task370-a2ac18266bca4f69acfb235314af06ee |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [56, 70]
Output:
| [
"[56, 70]"
] | task370-1dcc6853cf904044b88fa114d58bba2a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [97, 0]
Output:
| [
"[97]"
] | task370-7cdaded4f4e74e26830ae7a7e8f42529 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [10, -94, -11, 55, 92, 76]
Output:
| [
"[10, -94, -11, 55, 92, 76]"
] | task370-03a9cebe686f410f8cc7f2e06a47106c |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [60, 93, -4, 65, -74, 69, -68]
Output:
| [
"[-4, 65, -74, -68]"
] | task370-b8151a6e89934d7bb03be0f2a8a2ac17 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-94, 32, -81, -81, 16, 6, -76]
Output:
| [
"[-94, 32, 16, -76]"
] | task370-19091221cd714c26a98431ef3e01ca7f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [27, -74, -41, 37, 31, -11, 12, 24, -61, -86]
Output:
| [
"[-74, -41, 37, 31, -11, -61, -86]"
] | task370-d2ef1df7c5ce4ce5b78530a10ef04599 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [44, -55, 23, -48, 77, 33, 18, -46, -94]
Output:
| [
"[44, -55, 23, 77, -46, -94]"
] | task370-05e53126d22a4f0e96c9e37d8f51529f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-71, -57]
Output:
| [
"[-71]"
] | task370-9c3565fcc832426b94f039efee03a37d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-11, -9, -38, -57, 37, -4]
Output:
| [
"[-11, -38, 37, -4]"
] | task370-13030cb78b9943a28bb9a8b7be3d5d5e |