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: [-99, 78, 27, -34]
Output:
| [
"[-34]"
] | task370-cb04355f467d4fdba880897a7abb9d49 |
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, -14, 22, -56]
Output:
| [
"[10, -14, 22, -56]"
] | task370-5f3e24b4a07c4aed9e4ab655e7135039 |
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, -85, -42]
Output:
| [
"[97, -85]"
] | task370-eb2ba6b19409402d8c5adfcedf9ec814 |
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: [-91, -64, 85, -35, -75, 48, -97]
Output:
| [
"[-91, -64, 85, -35, -97]"
] | task370-25a3ab0f0f7b44928e3f3112ccc979a2 |
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, 0, -15, -22, -93, -17, -95]
Output:
| [
"[-22, -17, -95]"
] | task370-3140ebf56678495980166e4b07e3c750 |
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: [-20, 82, -32, 99, -46, 74, 35, 91, 59, 8]
Output:
| [
"[-20, 82, -32, -46, 74, 35, 91, 59, 8]"
] | task370-f5b54697045e43d6a29fd6075c3e1a1a |
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, -23]
Output:
| [
"[-10, -23]"
] | task370-5d9ae26e5db24caead39d1fb9cad078d |
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, 1, -35, -23, 38, -44]
Output:
| [
"[-71, 1, -35, -23, 38, -44]"
] | task370-0118c48d9c10406d9984b72dd680c330 |
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: [-4, 33, -71, 57, -50]
Output:
| [
"[-4, -71, -50]"
] | task370-4694be2edacc4631bffcf6b9c67c285e |
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: [51, 83, 30, -88, 56, -89, -65, -79, -22]
Output:
| [
"[83, -88, 56, -89, -65, -79, -22]"
] | task370-9962ab3fede8481d81e867b049b05531 |
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: [48, 83, -88, 73, 46, -73]
Output:
| [
"[83, -88, 73, 46, -73]"
] | task370-73a7bce559ff46fbae3fc4ef47dc1dd4 |
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, -70, 76, 100]
Output:
| [
"[-10, -70, 76, 100]"
] | task370-e2b211612117448bb0399c9cff6ad579 |
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: [-14, 21, -34, 18, 85]
Output:
| [
"[-14, -34, 85]"
] | task370-102df61643dc416696af8e5c3da37efa |
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: [-21, 28, 39, 67, -44, 39, -45]
Output:
| [
"[28, 67, -44]"
] | task370-246276735155471eaad640c410479d47 |
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, 62, -85, -90, 10, 39, 52, 36, -52]
Output:
| [
"[-86, 62, -85, 10, 52, -52]"
] | task370-39fc0fe9df294c75850113efa09141ca |
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, 66, 63, 14]
Output:
| [
"[14]"
] | task370-21438cfbabf840b5b9f9cda4cfe6b03c |
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, 25]
Output:
| [
"[5, 25]"
] | task370-f99d5839f12d435c8ccf477ba362d539 |
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, -10, 76]
Output:
| [
"[-10, 76]"
] | task370-81e6e9d111234e9eae20393de1ec9264 |
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, 93, -61, 40, 29, -29, 28, 17, -97]
Output:
| [
"[76, -61, 40, 29, -29, 28, 17, -97]"
] | task370-25b4416d64094754a4f2ea4cc6ed5293 |
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, 94, 75, -61, -14, -30, 10, -32, 92]
Output:
| [
"[88, 94, -61, -14, 10, -32, 92]"
] | task370-dca67dfb2b244e538fb1bd6e759f0f38 |
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, -37, -50, -27, 49, 20, -63, 95, 12, -61, 1]
Output:
| [
"[-37, -50, 49, 20, 95, -61, 1]"
] | task370-3a84083e7d7d4387a528ce5aeca74016 |
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, 75, -68, -22, -71, -41, 40, 26]
Output:
| [
"[-68, -22, -71, -41, 40, 26]"
] | task370-e87e279bc9e54015a0e97cd9622759a8 |
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: [-24, 85, 77, -32, -96, -60, 18, 6, 93, 65, -22]
Output:
| [
"[85, 77, -32, 65, -22]"
] | task370-f50aa21b0f874afc881b80b92566ac13 |
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, -11, -72, 14, -1, -33, 91, -87, -100, 34, 75]
Output:
| [
"[-11, 14, -1, 91, -100, 34]"
] | task370-475647efead947e6bea7dea4ec98a72e |
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: [-70, -44, 87, -20, -26, 14, 23, 94, -76, 36, -28]
Output:
| [
"[-70, -44, -20, -26, 14, 23, 94, -76, -28]"
] | task370-476feaca4cad425d9df409fccf3d5c54 |
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, -54]
Output:
| [
"[-7]"
] | task370-a312502ac09a42a5ac65fa9d268aa5eb |
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, -3, 98, -20, 82]
Output:
| [
"[35, 98, -20, 82]"
] | task370-ecf7672feff3453fb734411729a82bd4 |
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: [-41, 99]
Output:
| [
"[-41]"
] | task370-dc4b9c39ab0745fd92e2ee2f0057f1f2 |
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: [-26, 84, -96, -54, 47]
Output:
| [
"[-26, 47]"
] | task370-ac70ea8385ed495e9402471e93991d2b |
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, 36, 43, -91]
Output:
| [
"[43, -91]"
] | task370-4a308c284b5242c3888a61746f8466cc |
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, 26, -76]
Output:
| [
"[26, -76]"
] | task370-bb14831a1c524a9c9149f16e05a8029d |
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, 40, 60, 82, -91, 90, 10]
Output:
| [
"[-56, 40, 82, -91, 10]"
] | task370-0f597ccc6f164115a4d9e0111fa7a9ab |
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, 15, 69, -75, 19, -3, -71]
Output:
| [
"[-34, 19, -71]"
] | task370-7942e1292a61458792a777379ec949e4 |
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: [73, -65, 14, -94, 20]
Output:
| [
"[73, -65, 14, -94, 20]"
] | task370-95b2d62c5820407c8cc995a6ed1f163f |
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, 79]
Output:
| [
"[79]"
] | task370-42b08e63039a4a0c9de473a9d9521d92 |
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, -21, -45, 48, 12, 98, -12, 93, -39, -3]
Output:
| [
"[-7, 98]"
] | task370-b247bf9f4b0c443eb7243ea312c3e29b |
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, -98, 9]
Output:
| [
"[-98]"
] | task370-715a597c74314d9ba903309f6d087981 |
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, -72, -52, 47, 82, 51, -34]
Output:
| [
"[19, -52, 47, 82, -34]"
] | task370-973c9efb26834b8395bcbc8943d40202 |
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, 90, -52, -50, -91, 92]
Output:
| [
"[-55, -52, -50, -91, 92]"
] | task370-a33cb33d6640438c9146bcd7e7baad09 |
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: [20, -15, 71, -71, -46, 61, 58, 42, 28]
Output:
| [
"[20, 71, -71, -46, 61, 58, 28]"
] | task370-8c326881c4b6448d962b2cb81bcf1d2d |
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, -75, -53, 87, -74, 27, -90, -47, -91]
Output:
| [
"[-53, -74, -47, -91]"
] | task370-2360f5828e5b416aad80b729e693f20d |
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, 0, 75, -48]
Output:
| [
"[-23]"
] | task370-2becc74ea4f0458c8390224f13712d70 |
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: [-2, -3, -31, 45]
Output:
| [
"[-2, -31]"
] | task370-0e58b2e8b5d44ab6bc743a01a9538eed |
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, -32, -66, -40, 44]
Output:
| [
"[68, -32, -40, 44]"
] | task370-dc8bdabc8c8648e8b770a43e6de82830 |
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, -49, -45]
Output:
| [
"[-49]"
] | task370-13114b57cd1045af9f66680a603b8128 |
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, 65, 24, 71, 11, 5, -68]
Output:
| [
"[65, 71, 11, 5, -68]"
] | task370-fbe86d21fd9f42f5b85cba9a6bb48c9a |
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: [-95, 94, -87, -38, -22, 35, -22, -96, 58, 3]
Output:
| [
"[-95, 94, -38, -22, 35, -22, 58]"
] | task370-5563ec086d4e4c34811793aa7e6f1834 |
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, 41, -44, -48, 82, -3, -72, 35, 82, 71, -82]
Output:
| [
"[41, -44, 82, 35, 82, 71, -82]"
] | task370-9bb144bb4eeb4c1d93910dec4b988dcc |
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, -46, 94, 73, 14]
Output:
| [
"[58, -46, 94, 73, 14]"
] | task370-5d9edf92ff86409b82756175d080ff3f |
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: [62, -31, 4, 6, -55, 8, 6, 82, -17, -42, 43]
Output:
| [
"[62, -31, 4, -55, 8, 82, -17, 43]"
] | task370-bfd4e5ccd7d8495f9483324ae988b0b0 |
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: [17, -61, 77, 77, 51]
Output:
| [
"[17, -61, 77, 77]"
] | task370-e304d60e4dcc4c958bf275809df7932c |
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, -37, -34, 67, -86]
Output:
| [
"[-37, -34, 67, -86]"
] | task370-5ad1bfca186a492e8ca21c2e9ad2973f |
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, 23, 88, -43, -11, 23, -13, 80, 97]
Output:
| [
"[40, 23, 88, -43, -11, 23, -13, 80, 97]"
] | task370-12db9cac64364554af9d581c42de8293 |
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, -32, 62, -55]
Output:
| [
"[-32, 62, -55]"
] | task370-63119bade55e4d2a9f582d582fc8c001 |
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: [83, -57, -89, 10, -84]
Output:
| [
"[83, -89, 10]"
] | task370-9868d75b8c6e4ac5a6adf8750aeb3b1a |
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, 19, -12, 95, -5]
Output:
| [
"[19, 95, -5]"
] | task370-9eb2010cdde94900ac8fe1de45d68c08 |
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: [20, 65, 68, 66, -19, -20, 71]
Output:
| [
"[20, 65, 68, -19, -20, 71]"
] | task370-270e75d5ada842168fdfd7dd50dc9aa4 |
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, 43, 83]
Output:
| [
"[-94, 43, 83]"
] | task370-c7dbc0c966e34824ac740ab56f198ce8 |
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, 70, -63]
Output:
| [
"[22, 70]"
] | task370-5d70c193cdc54cbda3bd1fe47c504a52 |
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, 6, -64]
Output:
| [
"[97, -64]"
] | task370-880e95c3cf3c4a899874cb2fe965552a |
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, 39, 13, 22, 2]
Output:
| [
"[-98, 13, 22, 2]"
] | task370-f3d3c9b30dbc46a097c4d88eccfa78bf |
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, -45, 69, 33, 77, -94, 35]
Output:
| [
"[77, -94, 35]"
] | task370-9b2740d8c9d84cecb29a0492d04dc2ad |
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, 90, -73, -71, 63, 14, 29, -4, 83, -20, -47]
Output:
| [
"[58, -73, -71, 14, 29, -4, 83, -20, -47]"
] | task370-bd4ca08c5c2d47a1857816e765c2a140 |
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, -91, 100]
Output:
| [
"[-91, 100]"
] | task370-29de6baeb1d9486d80deea60c05f0661 |
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, 99, -93, 15]
Output:
| [
"[86]"
] | task370-36b4d78bd9a44efaa126a743800a93d4 |
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, 25, -40, 69, -53]
Output:
| [
"[-85, 25, -40, -53]"
] | task370-068e8d8c1c7e4fcfb00df008e69b5942 |
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, 9, -51, 98, 32, -31, -41, 76, -79, -23, -98]
Output:
| [
"[13, 98, 32, -31, -41, 76, -79, -23, -98]"
] | task370-fdb7ea8f85924fe38d2bf81e963b1bee |
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, 84, 40, -76, 97, -64]
Output:
| [
"[88, 40, -76, 97, -64]"
] | task370-71ada2412d1049498719bac0997ea992 |
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, -39, 93, -15, 96, 67, -97, 66, -89, 3]
Output:
| [
"[67, -97, -89]"
] | task370-2cb18495ad784cc9a9c47cadac2b1277 |
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: [-70, 12, -33, -71, -95, -65, -94, 48]
Output:
| [
"[-70, -71, -95, -65, -94]"
] | task370-29c426d249e5419b951785338eab5799 |
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: [95, -31, 54, 31, 30, -67, -2, 29]
Output:
| [
"[95, -31, 31, -67, -2, 29]"
] | task370-4ea200bb9d1a4f9680cd656a74346324 |
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, -81, -4, -5, -61, 24, -20]
Output:
| [
"[13, -4, -5, -61, -20]"
] | task370-b3edf0efa7484672a63879e09d959241 |
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, -24, -40, 72, -13]
Output:
| [
"[58, -40, -13]"
] | task370-62432bdd78cf4e2283d78fc81d100961 |
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, -32, 90]
Output:
| [
"[-11, -32]"
] | task370-c641e75e722549869becf199292386cb |
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: [-51, -92, 16, -9, -53]
Output:
| [
"[-92, 16, -53]"
] | task370-9b60b04e9e644a9fbdaa8518a0918639 |
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, 72, -57, 10, -90, 49]
Output:
| [
"[10, 49]"
] | task370-99b8968bd8494be6905aa7f179f90da1 |
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, -99, -89, -55, -9]
Output:
| [
"[-89, -55]"
] | task370-95b0295b2e1846f5be3651a0bd768aff |
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, -75, -52, -11, 47]
Output:
| [
"[-77, -52, -11, 47]"
] | task370-113f237a6f034e52a0cc17aa4a8b918b |
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, 34]
Output:
| [
"[-71, 34]"
] | task370-2b4836d1db794bc4848091575e8d1eb3 |
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: [82, 8]
Output:
| [
"[82, 8]"
] | task370-4228afa5d30c4c2a9d4af508bdbbfb59 |
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: [4, -49, -81]
Output:
| [
"[4, -49]"
] | task370-7bbf3409b09f4039be500da1c02675fb |
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: [-20, -50, -80, -30, 8, 55, 3]
Output:
| [
"[-20, -50, -80, 8, 55]"
] | task370-b57a61c7c79c4a77b896e0f68ec7e0d4 |
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, -56, -44]
Output:
| [
"[-10, -56, -44]"
] | task370-71e8cc9f69ed432ebb20c6c824492dfa |
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, 41, 15, -44, 79, -56, 28, 49, 8]
Output:
| [
"[85, 41, -44, 79, -56, 28, 49, 8]"
] | task370-dfd87684047a4dc997538d97d60dc258 |
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: [64, -62, 33, 47, -37, -44, -19, 36, 58]
Output:
| [
"[64, -62, 47, -37, -44, -19, 58]"
] | task370-b9749e07c1c747a69478a629017c6a88 |
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, -3, -86, 25]
Output:
| [
"[-13, -86, 25]"
] | task370-15facc2552f648dd824761cd3a70a751 |
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: [29, 33, -54, -35, 34, -57, 80, 89, -11]
Output:
| [
"[29, -35, 34, 80, 89, -11]"
] | task370-a7342a2c34ca456e89c607cfa87f381a |
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, -59, 54, -58, -63, 78, 67, 100, -25, -36, 24]
Output:
| [
"[61, -59, -58, 67, 100, -25]"
] | task370-a5c02cd6dbc9447db4ff2c2c3d40146e |
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, 41, 8, 7, 18, -93, -52, -25, 21, 19]
Output:
| [
"[-71, 41, 8, 7, -52, -25, 19]"
] | task370-2ff8d370f0084e6e92aa7c4372cbde22 |
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, -46, -17, -79]
Output:
| [
"[-31, -46, -17, -79]"
] | task370-a8cbf48842ef47aaba3b9b8f18e00e3f |
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, 11, -24]
Output:
| [
"[-1, 11]"
] | task370-473b22086f3b4559a57cc2fffdf310c8 |
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, 8]
Output:
| [
"[68, 8]"
] | task370-daec25cadb8846088f13eb93896e1470 |
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, -43, 16, 77, 57, 53, -97, 33, 13]
Output:
| [
"[10, -43, 16, 77, 53, -97, 13]"
] | task370-c3eea2f97223453588e72271520accc5 |
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, -52, 62, -70, -20, -85, -48, 71, -89, -88]
Output:
| [
"[-38, -52, 62, -70, -20, -85, 71, -89, -88]"
] | task370-ce01d6cf0d1e464fa4d118d6a5e571ad |
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, -77, -7, 95, -55, 12, -71, 84, 76, 16, -70]
Output:
| [
"[79, -77, -7, 95, -55, -71, 76, 16, -70]"
] | task370-0d25e0c152004d9993c6db630b3e8da3 |
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, -50, 68, 45, 94, -77, 35, -74, 34]
Output:
| [
"[-50, 68, 94, -77, 35, -74, 34]"
] | task370-063491cd46d84b8baa2a1fa07b0fb84d |
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: [-63, 90, 29, -42, 83, 83, 99, -7, 97, -43, -94]
Output:
| [
"[29, 83, 83, -7, 97, -43, -94]"
] | task370-b35f7586e86640938ed8c0184de80626 |
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, -30, 45, 83, 37, 27, -54, 52]
Output:
| [
"[86, 83, 37, 52]"
] | task370-9a4b39abe3b34b13a34adc57c0088115 |
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, -82, 50, 79, -68, -59, 91, -85, -71, 31, 63]
Output:
| [
"[-82, 50, 79, -68, -59, 91, -85, -71, 31]"
] | task370-ec0bb59669af41abab6cca6ce7cdb393 |
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, 62]
Output:
| [
"[-34, 62]"
] | task370-98ed11be74ed45519644a9f6e4a4f2d9 |