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: [31, 8, 2, -66, 18, -14, 60]
Output:
| [
"[31, 8, 2, -14]"
] | task370-b8fbc400c1af435db418ff1b488b1eef |
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, 94, -12, 80, 88, 2, 39, 72]
Output:
| [
"[-85, 94, 80, 88, 2]"
] | task370-bd5469b9d3d34bfcbb5ab9ed9b54d397 |
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: [-47, -55, -18, 28, 1, 20, 70]
Output:
| [
"[-47, -55, 28, 1, 20, 70]"
] | task370-50746f15ffc94a24a73b057cff6486db |
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, 49, -72, -50, -95, 32]
Output:
| [
"[-41, 49, -50, -95, 32]"
] | task370-7197a0f5351f481192d94b5b1c5c57b2 |
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, 48, -23, 95, -14, -98, 31, -64, -70]
Output:
| [
"[-98, -23, 95, -14, -98, 31, -64, -70]"
] | task370-f2f40d82ccd54fefaeddc4bf7ecc12d4 |
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, 45, 87, 41, 22]
Output:
| [
"[-56, 41, 22]"
] | task370-cfee02fede5948a8a0f091e6426d3ad7 |
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: [-42, 94, 35, -75, -50, -1, -53, 49, 45]
Output:
| [
"[94, 35, -50, -1, -53, 49]"
] | task370-14fe9417eb124814b3ff93531ad3eec4 |
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, 61, -67, -97, 87, -88]
Output:
| [
"[61, -67, -97, -88]"
] | task370-195724b485064a9e9c184e8be5348d9a |
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, 86, -56, 19, -52, 26]
Output:
| [
"[86, -56, 19, -52, 26]"
] | task370-27f2331853a44b79b4e963d6cc3908cc |
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, -44, 17, -49, 78, 27, -94, 3, 30, 64, 30]
Output:
| [
"[-44, 17, -49, -94, 64]"
] | task370-8c372dc44a944b0b93780e8b35d7e0c7 |
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, 13, 16, 43, 54, 20, -98, 8]
Output:
| [
"[13, 16, 43, 20, -98, 8]"
] | task370-f31e3b314f564c1085275ea5b163876e |
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, -44, 14, 46, 7, 6, 36]
Output:
| [
"[59, -44, 14, 46, 7]"
] | task370-bc5a8e9201ae4dee90b0ac5290d204aa |
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: [-47, -31]
Output:
| [
"[-47, -31]"
] | task370-a13ecc0d00c946388228d0b19a784b29 |
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, -73]
Output:
| [
"[61, -73]"
] | task370-b5f86e26e1b04ad5ab8c6191d94ade74 |
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, 67, 90, -36, 44, -7]
Output:
| [
"[-98, 67, 44, -7]"
] | task370-2e44d695d77c4c3693c15448e41d24df |
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, -87, -62, -28, -41, -72, 12, -87]
Output:
| [
"[17, -62, -28, -41]"
] | task370-45627658a96c4cc487d4b596124e03e8 |
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: [-42, 7, 98]
Output:
| [
"[7, 98]"
] | task370-7bc3b99675724fc0817fda2be6108369 |
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, -82, 28]
Output:
| [
"[-76, -82, 28]"
] | task370-5f035e7ca4e743b98cb0887b9a3083f0 |
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, -68, -33, -23, 41, 36, 58]
Output:
| [
"[-68, -23, 41, 58]"
] | task370-dc7d00c36fdd4b82b29e6b5ca2542831 |
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, 94, -63, 0, -74, -96, 97, 38]
Output:
| [
"[-59, 94, -74, 97, 38]"
] | task370-2b5a90e31ade4464b3e879d39dc762e2 |
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, 26, -90, 71, -28, -17, -65]
Output:
| [
"[-53, 26, 71, -28, -17, -65]"
] | task370-22e9626c5ebb4d4ab21b8fbb7f744bda |
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, 29, -5]
Output:
| [
"[29, -5]"
] | task370-5dd9d72b55f64e5e927caad404f454fd |
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: [-47, -61, 37, 27, -81, -69, 49]
Output:
| [
"[-47, -61, 37, 49]"
] | task370-20451607d4294ffb8617c236a25ee1e9 |
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: [-43, 87, -58, -18, -75, 49, -66, -76, -93]
Output:
| [
"[-43, -58, 49, -76]"
] | task370-28b79d48afac4f198423208d3053074d |
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, 78, -97, -83, -55, -55, 56]
Output:
| [
"[52, -97, -83, -55, -55, 56]"
] | task370-21307d9b664349acbad759a0125b4038 |
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, -62]
Output:
| [
"[62, -62]"
] | task370-680e199124f8460785f5b80ae0397822 |
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, 75, -31]
Output:
| [
"[59, -31]"
] | task370-dab62907f53d488ca07833df0193c99c |
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, -68]
Output:
| [
"[-29, -68]"
] | task370-37f26f85a4004d25982af3f8cc0e05c8 |
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, -92, -30, 27, 5]
Output:
| [
"[-1, -92, 5]"
] | task370-87c59a5c64a2436e9fbbdeff33c565a9 |
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, -85, -50, 33, 43, -68, 92, 35, 70]
Output:
| [
"[-49, -85, -50, 43, -68, 92, 35, 70]"
] | task370-8c20cfe1b7234aa98045aa6401042383 |
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, -100, 78]
Output:
| [
"[26, -100]"
] | task370-fcb744e4116842ec886f5088ee217f37 |
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: [43, 16, -34, -60, 60, -75, 38]
Output:
| [
"[43, 16, -34, 38]"
] | task370-af8077deed494f9b94de39c182570a1a |
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, 55]
Output:
| [
"[100, 55]"
] | task370-6869c61465b648dfb5fdedc339604c18 |
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, 92, 10, 7, 27, -13, 75]
Output:
| [
"[92, 10, 7, -13]"
] | task370-6e6fc8a28d4d4fc79d5f8308261f91a5 |
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, 55, 25, -30, 37, 32, 91, -7, -47, -95]
Output:
| [
"[55, 25, 37, 32, 91, -7, -47, -95]"
] | task370-442af2f9311744b08b996c9b00571b90 |
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, -47, -2, 72, 57]
Output:
| [
"[25, -47, -2]"
] | task370-02cbac30b3094e75b85660d17f3c30b8 |
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, 97, 4, -73, -68, -1]
Output:
| [
"[-68, 97, 4, -73, -68, -1]"
] | task370-5f9d54f2d6df47ceaf2b98b6de4a81fc |
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: [6, 65, -56]
Output:
| [
"[65, -56]"
] | task370-c4c9ae89f8e54f22876aa1da04fe55a2 |
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, -11]
Output:
| [
"[5, -11]"
] | task370-1ccd39d0f502400188c1c550dc3bcc98 |
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: [-74, -84, 24]
Output:
| [
"[-74]"
] | task370-3f7239acbb4145b7a0f3b36b0c27c343 |
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, -29, -79, 9, 26, 29, 69]
Output:
| [
"[-2, -29, -79, 26, 29]"
] | task370-552cd0ca1db743cabf8f828ba8ab27da |
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, 18, -2, -76]
Output:
| [
"[-2, -76]"
] | task370-d23da33cc8db44a2b1fea5bc0bca0f14 |
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, -19, -66, 21]
Output:
| [
"[41, -19]"
] | task370-c2779ebdbdb246429c8912cefcb1a455 |
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, -30]
Output:
| [
"[]"
] | task370-f78d0b1f7d454cd38c8cc247ad74691a |
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, -17, 43, -6, -16, -88]
Output:
| [
"[67, -17, 43, -16, -88]"
] | task370-6379b1ea6b104b178c834734110b758c |
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: [-80, -39, -65, 29]
Output:
| [
"[-80, -65, 29]"
] | task370-fab90b279f134813b6e9714b0b6c0ed7 |
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, 12, 68, 40, 25, 23, -44, -68]
Output:
| [
"[-98, 68, 40, 25, 23, -44, -68]"
] | task370-9d908674f82a4472b53ceefee5cc885e |
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, 71, 83, 66, -54, 90, -91]
Output:
| [
"[71, 83, -91]"
] | task370-27670611f33a49bba18f150b160bd9f9 |
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, 73, 41]
Output:
| [
"[-71, 73, 41]"
] | task370-fa4125195d7243cdb90a475d16ee26a7 |
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, 76, 39, 93, 16]
Output:
| [
"[76, 16]"
] | task370-85af394b37b74cadb62cdc6ee59ba496 |
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, -63, 88, 45, -17, -74]
Output:
| [
"[62, 88, -17, -74]"
] | task370-e7401721d13c4989be8e67bfaa104456 |
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, -57, 46, 30, 67, 83, -83, -89, 58, 45, -69]
Output:
| [
"[-77, 46, 67, 83, -83, -89, 58]"
] | task370-d9b7225089cd4041b91c502a092ba549 |
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, -73, -83, -40, -95, 10]
Output:
| [
"[-19, -73, -83, -40, -95, 10]"
] | task370-f324286ec5ab43398f01924e46127abc |
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, -12, -57, 78]
Output:
| [
"[2]"
] | task370-651ff268e25d4f92bc3578ab524bff5f |
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, 16, 18, 19, 27, -6, -95, 96, 68, -56]
Output:
| [
"[-7, 16, 19, -95, 68, -56]"
] | task370-d6e21295ce5743eebe234d647533915f |
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, 99, 64, -30, 44, 89]
Output:
| [
"[-22, 64, 44, 89]"
] | task370-88a4c565d113450b8bec292617b43908 |
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: [32, 75, 30, -19, 11, 67, -19]
Output:
| [
"[32, -19, 11, 67, -19]"
] | task370-6eaac919aac043528c3575c8e1433172 |
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, -52, 30, -34, -80, -100, 11, -64]
Output:
| [
"[-5, -52, -34, -80, -100, 11, -64]"
] | task370-2e9b1ba2e22f434e924861892c8c8771 |
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, 97, -31, -40, -15, -91, -78, -17, -37, -35, -12]
Output:
| [
"[95, 97, -31, -40, -91, -17, -37, -35]"
] | task370-7554b26522774b4495298b4a23a482c7 |
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, 87, 38, 52, -84, 45, -7, 92, -45, 32]
Output:
| [
"[35, 38, 52, -7, 92, 32]"
] | task370-00dc0ffe60204472806f24d009168f23 |
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, 66, -30, 21, -98, 25, 61]
Output:
| [
"[38, -98, 25, 61]"
] | task370-9dbdfe3c1ede4d69a126b9f0522eec67 |
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, 53, 67, 92]
Output:
| [
"[35, 53, 67, 92]"
] | task370-a263b19df9e845518c5e69197cda0035 |
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, 99, 89, 89, 58, -3, -90, 78, -26, -33]
Output:
| [
"[-55, 89, 89, 58, -26]"
] | task370-7e892c2da4d5463b80adcfb39afa9a48 |
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, 1, 19, 43, 56]
Output:
| [
"[25, 1, 19, 43, 56]"
] | task370-82f6a7e9fc6345aea1a7a6df39c0df32 |
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, -76, -77, -6, -53, -35, -22, 12, 60]
Output:
| [
"[-76, -77, -53, -35, -22]"
] | task370-f7fb16545ac34cf6b7d96187b7e8cbd8 |
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, -19, 93, 69]
Output:
| [
"[-22, -19]"
] | task370-311ee9ea736d4b58b2b460b6e74c9c19 |
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, -5, -27, 37, 98, -42, -9, -85, 53]
Output:
| [
"[5, -5, 37, 98, -85, 53]"
] | task370-ba37fd1165bd4bcca4a23522477a96fe |
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, -82, 5, 98, -57]
Output:
| [
"[1, -82, 5, 98]"
] | task370-964ef6789e794ee985d93bdb6cbce95e |
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, -1, 42, -14]
Output:
| [
"[31, -1, -14]"
] | task370-607314c319e2465f99befc4e6193a6e3 |
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, -46, -67, -5, 0, -66, 82, 32, 64, -66, 34]
Output:
| [
"[-46, -67, -5, 82, 32, 64, 34]"
] | task370-1c6c8e562dca43b4be0c2f4d0dec8907 |
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, -48, 38, -97, -40, -35, 33, 48, -97, -86, 69]
Output:
| [
"[38, -97, -40, -35, -97, -86]"
] | task370-d247b17c20434fb8a5925bd7e0359c0e |
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: [81, 85, 58, -72, -78]
Output:
| [
"[85, 58]"
] | task370-20db45163a33447d8cd50430daf95151 |
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, 73, 34, 56, -22, -53, 29, -80, 26, 82, 80]
Output:
| [
"[53, 73, 34, 56, -22, -53, 29, -80, 26, 82, 80]"
] | task370-67e8768cf3f741119b4fcb9e25a97e70 |
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, 44, 82, 95]
Output:
| [
"[44, 82, 95]"
] | task370-b2fc987d406744c3b5208d8f2ac53e32 |
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, 6, 29, 78, 78, 71, 81, -27, 52]
Output:
| [
"[29, 71, 52]"
] | task370-7914730e1be341d394a013d0bbe8153b |
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, -4, -75, 7, -18, -34, -82]
Output:
| [
"[-38, -4, 7, -34, -82]"
] | task370-4e03c1cb5afe4b9080ed7b662c977ed9 |
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, 82, 28, -74, -17, -68, 37]
Output:
| [
"[-38, 82, 28, -74, -17, -68, 37]"
] | task370-232bf496f9f144c19185a5e6161394c9 |
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, 83, -57, 79, -68, 2, 1, 46, 32]
Output:
| [
"[83, 83, 79, -68, 2, 1, 46, 32]"
] | task370-363641b7fbd846eb8760a2c81d36fda2 |
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: [-74, -45, 6, 23, -25, 20, 16, 42, -86]
Output:
| [
"[-74, 23, -25, 20, 16, -86]"
] | task370-304035db01fb4ceb9460506a5cb6b294 |
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, -96, 100, 6, -36, 93]
Output:
| [
"[-68, 100]"
] | task370-b2b2081269a54e5b9bd53a3afb3a47da |
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, 31, 2, 73, -89, -23, 14, 43, -84, -20]
Output:
| [
"[31, 31, 2, 73, -89, -23, 14, 43, -20]"
] | task370-6f21d6bf3ad24aafbd77a0415ad3fa7f |
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, -29, -94]
Output:
| [
"[61, -29, -94]"
] | task370-0ee571afac514989a2000a0c09ac5447 |
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, 88, -66, -74, 22, -3, 57, 36]
Output:
| [
"[-94, 88, -74, 22]"
] | task370-1cfe4ced7827451e83c38699b19231a7 |
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, -93, -39, 41, -43, -22, -62]
Output:
| [
"[-13, 41, -43, -22, -62]"
] | task370-578b74dc682a4a69b3c0237a6126a1d9 |
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, -49, 59, 65, -82, -38, -51, 46]
Output:
| [
"[25, -49, 59, 65, -82, -38, 46]"
] | task370-c561b6599ef84087811118dd642cb7f8 |
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, -56, -22, -62, -18, 7, -80, -35, 16]
Output:
| [
"[-56, -22, -62, 7, -80, -35, 16]"
] | task370-ef9b1c63df9a446db248274ab49a418b |
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, -22, 22, -25, 74, 75, -2]
Output:
| [
"[5, -22, 22, -25, 74, -2]"
] | task370-8e548be689be4011b5d44df9cbba4122 |
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, 80, -51, -71, -33, 21, 64, 42]
Output:
| [
"[-95, 80, -71, 64]"
] | task370-dfbe50a2e4e84ca5bbb9d70dfeda2816 |
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, -14]
Output:
| [
"[-100, -14]"
] | task370-4717700f629348ccbfcf8eeb0da81b89 |
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: [92, -70, 77, 12, -76, -38, 25]
Output:
| [
"[92, -70, 77, -76, -38, 25]"
] | task370-53deeda0ecc545c99c25a91f713252cf |
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: [37, 52, -74, 4, -79]
Output:
| [
"[37, 52, -74, 4, -79]"
] | task370-3b663b75473f42bdb74d4dd1fab8076c |
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, -12, -20, -89, 18, -43, -77, 23, 20, -25]
Output:
| [
"[-13, -20, -89, -43, -77, 23, 20, -25]"
] | task370-1092db03d9c24e3fb82a26595e905084 |
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: [-89, -27, -61, 50, -73, -31, 8, 13]
Output:
| [
"[-89, -61, 50, -73, -31, 8, 13]"
] | task370-91b9d8e7712e4eff8d989501f14741e2 |
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, 30]
Output:
| [
"[]"
] | task370-1962c23289c34fcf90ad630aeafc076b |
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, 51, -54, -54, 57, 20]
Output:
| [
"[-86, -62, 20]"
] | task370-ae4fd47842db46fd9fbf4df1a36de05e |
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, -40, 65, -30, 68, -59]
Output:
| [
"[-65, -40, 65, 68, -59]"
] | task370-0c5f6acd22c84aba87a94606479ffdd6 |
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, 3, -90, 29, -60, -37, 94, 92]
Output:
| [
"[-82, 29, -37, 94, 92]"
] | task370-c03c7652b2d2496894deb1fccadcad3c |
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: [47, -60, 32, 27, -99, 49, 44]
Output:
| [
"[47, 32, 49, 44]"
] | task370-fdcdb42a9e4d4d9e9b0b301e2ff54b45 |
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, -93, 23, 92, 50, 61]
Output:
| [
"[77, 23, 92, 50, 61]"
] | task370-2228abf020804a6bb96c2fd1be19700e |
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, -36, -84, -89, -85, 9, -4, -99, 56, 85]
Output:
| [
"[-4, -89, -85, -4, 56, 85]"
] | task370-f7f658bdbea146ba9ab02d821bd48b10 |