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: [28, 23, -90]
Output:
| [
"[28, 23]"
] | task370-d2de47d003de48e8b40f6fbb5a5cef91 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 77, -80, 96, -25, 27]
Output:
| [
"[77, 77, -80, -25]"
] | task370-7b381e64c7e74fcba1f1a1e5fa593ffc |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -52, 28, 77, -32, 90]
Output:
| [
"[80, -52, 28, 77, -32]"
] | task370-834d2baeb20940d0a0acc479e493de81 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -1, 24, -17, 6, 56, -94, 1, 93, 55, -32]
Output:
| [
"[100, -1, -17, 56, -94, 1, 55, -32]"
] | task370-0a0304761b614ef0ac8b44e8963134a5 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -28, 22, -34, -25, 80, -65, 97]
Output:
| [
"[-28, 22, -34, -25, 80, -65, 97]"
] | task370-e98acb2480e74c299ff4baaaff747c5c |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 89, -25, -52, -32, 90, -44, 18]
Output:
| [
"[4, 89, -25, -52, -32, -44]"
] | task370-9430afa8043b4fc19115b793ef67b213 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -66, -15, 84, 100, -73, -75]
Output:
| [
"[95, 100, -73]"
] | task370-230e4312604645e2af88e50620913274 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 10, 51, 53, 2, -10, 2, 88]
Output:
| [
"[10, 53, 2, -10, 2, 88]"
] | task370-f575815d9e384632858b78a0a800160e |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -79, -6, -32]
Output:
| [
"[68, -79, -32]"
] | task370-fc6c02e2aa5d4c76ba21cdf3157fe32b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -31, 82]
Output:
| [
"[-31, 82]"
] | task370-3ee2f622533446b3a4c4ea573672f241 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 59, 45, 34, 54, 73, 76, -11]
Output:
| [
"[59, 34, 73, 76, -11]"
] | task370-123764b59cb74cb3bdca734146aeaec9 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -76]
Output:
| [
"[70, -76]"
] | task370-e4d5f24244854541ad522d27142b3754 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 24, 54, 83, -38]
Output:
| [
"[73, 83, -38]"
] | task370-b0006ac2e47540eea29a0dc7ec34bdc3 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-93, -44, -64, 11, -100, -59, -17, -82, -64, -51, -43]
Output:
| [
"[-44, -64, 11, -100, -59, -17, -82, -64, -43]"
] | task370-86221e6eb52e4057a1bc3334ab53c6ba |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -36, 41, 52]
Output:
| [
"[-35, 41, 52]"
] | task370-1a8eedea384749a6876a985de1ec893d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 68, -27, -95, -37, -86, 18, 21]
Output:
| [
"[68, -95, -37, -86]"
] | task370-8b51a576e75349d8a4ddb214045229fb |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 78, -76, -67, -35, 35, -56, -81]
Output:
| [
"[-74, -76, -67, -35, 35, -56]"
] | task370-7705af8ba899468ca9b846377f5ff766 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 64, 95, -21, 73, -16, 13, 75, 57]
Output:
| [
"[64, 95, 73, -16, 13]"
] | task370-7aee52b1b31542f28b3d312ba99a647b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -41, 42, -71, 85, 93]
Output:
| [
"[83, -41, -71, 85]"
] | task370-1458663c410440239d6a6b7d57e49d90 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -13, -61, 8, -28, -58, 23, 95]
Output:
| [
"[13, -13, -61, 8, -28, -58, 23, 95]"
] | task370-777f6ea2076b47cd979b0ec364b00f3b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -2, 89, 88, -38]
Output:
| [
"[-40, -2, 89, 88, -38]"
] | task370-66e0cda503534a70ba6b0cdbf339d491 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 99, 54, -27, -49, 41, -85, -54, 68, 48]
Output:
| [
"[98, -49, 41, -85, 68]"
] | task370-25695b22c3cb4d6a8c606629c3e5dfa6 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -11, -42, -82, -93, 24]
Output:
| [
"[-11, -82]"
] | task370-15de354b69af437f881cefdd706c615d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-93, -27, -97, 97, -57, 29]
Output:
| [
"[-97, 97, 29]"
] | task370-1bdf74ca347440c3a155823d86c5def8 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -10, -50, -48, -32, 43, -30, -2, -78, 84, 30]
Output:
| [
"[-80, -10, -50, -32, 43, -2]"
] | task370-c469dcf3797848ccbb3e7f80db0452d0 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 3, -81, -41, 19]
Output:
| [
"[74, -41, 19]"
] | task370-c2e085829821460094bed8349b5b001f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 14, -34, 93, 64, -76, -48, 49]
Output:
| [
"[-14, 14, -34, 64, -76, 49]"
] | task370-c15b739205b94ad39b1830c596104af1 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [12, 78, -37, -4, -67, -6, 65, 9]
Output:
| [
"[-37, -4, -67, 65]"
] | task370-ad6ddded434a4682b32f98b16505ab4e |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 89, 96, -24, 57, -57]
Output:
| [
"[71, 89]"
] | task370-4952397db12b4001bbac982a17977b2f |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 68, 99, 98, 48, 10, 66, -39, 51, 28, 41]
Output:
| [
"[82, 68, 98, 10, 28, 41]"
] | task370-f068527ec95e4eb7a9d51286d95e2b20 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -15, 52, 66, -97, -20, -65, -29]
Output:
| [
"[-59, 52, -97, -20, -65, -29]"
] | task370-9597d4038a0d4e72b3f9c3afca258618 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -84, 57, 20, -14, -57, 83, 9]
Output:
| [
"[91, 20, -14, 83]"
] | task370-b384a8f7065a4fa9a8f2e47502c7f6b3 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -80, 6, -95, -38, -92, -83, 98]
Output:
| [
"[10, -80, -95, -38, -92, -83, 98]"
] | task370-b250b0f767874a9abe1184afcde0a14a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 76, -36, 64, 94, -42, -42, 40, 37]
Output:
| [
"[-47, 76, 64, 94, 40, 37]"
] | task370-56050081d2c94f7fb127765740b13959 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 77, 23, -2, -35, -8]
Output:
| [
"[-4, 77, 23, -2, -35, -8]"
] | task370-61e294e9bb3842f291522f38017c9802 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 18, 0, 56, 1, 13, -42, -24]
Output:
| [
"[77, 56, 1, 13]"
] | task370-bf14a3e1707e42259a900b55119492f9 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -66, -58, 40]
Output:
| [
"[62, -58, 40]"
] | task370-3c35f426e59e41deb24af99d6dea5d11 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -63, 26, 100]
Output:
| [
"[4, 26, 100]"
] | task370-7d95f04ed9e7411f9d3226928dd9a673 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -26, -90, 43]
Output:
| [
"[74, -26, 43]"
] | task370-75658d6a386f472382e30bc17016aaf1 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 54, -7]
Output:
| [
"[32, -7]"
] | task370-29859fd946774a5da8fdd612d6859c14 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -29, 73, 93, -77]
Output:
| [
"[89, -29, 73, -77]"
] | task370-de869a70e64e4ce19342769a546766c7 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -73, -67, 97, 33, 15, 14, -30, -49]
Output:
| [
"[-73, -67, 97, 14, -49]"
] | task370-c6afe4968e9f4179b67bc54dc8eafa08 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 15, 9, -57, 100, 22, -99, 85, -12]
Output:
| [
"[43, 100, 22, 85]"
] | task370-0e382fbab4d64b0f9a6c1ccaae217f2e |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 48, -56, 51, 23, 36, 23, -54, 100]
Output:
| [
"[-92, -56, 23, 23, 100]"
] | task370-fc486952a22f4daca685283cb7073b86 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 44, 69, 59, 13, 12, 77, -41, 64]
Output:
| [
"[-47, 44, 59, 13, 77, -41, 64]"
] | task370-ab59d732785242e18277a5a08a936fb7 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [9, -39]
Output:
| [
"[]"
] | task370-5120158f906b404bb53bf1092faae2ea |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [3, 70, -65, 63, 77, -20, 85, -84, -89, -96, -65]
Output:
| [
"[70, -65, 77, -20, 85, -89, -65]"
] | task370-8dbe1e5caae54d7dbe0ac268db070062 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -12, -68, 41, -8, 13, -21, 78, -86, 81]
Output:
| [
"[47, -68, 41, -8, 13, -86]"
] | task370-71a528f7368b4177bb71c248fc747c36 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -84, -1, -63, 92, 72, -69]
Output:
| [
"[-1, 92]"
] | task370-37c65f6b954e44969848c45e78e52ce6 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -37]
Output:
| [
"[58, -37]"
] | task370-23b50149a58a46aab7a8a3fa1187ceee |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -75, -88, -62, -74, -29, -33, 91]
Output:
| [
"[89, -88, -62, -74, -29, 91]"
] | task370-2442ce6c06014d3391468f338c6759fd |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-93, 61, 73, 51, -73, 64]
Output:
| [
"[61, 73, -73, 64]"
] | task370-e65953f8e0004236a90db0e1329b196d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 19, 43, 19, -75, 59, 8, 32, 100, -26]
Output:
| [
"[-35, 19, 43, 19, 59, 8, 32, 100, -26]"
] | task370-3a28e55b5e7b4a31a2e0671940f8f657 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-97, 72, -46, 72, -58, 53, 2, 0, -48]
Output:
| [
"[-97, -46, -58, 53, 2]"
] | task370-fa738e26823a41ba92a214c3e5bf9b45 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [50, -92, -65, -35, 59, 61, 18]
Output:
| [
"[50, -92, -65, -35, 59, 61]"
] | task370-f7ec44e2678a4431b1ea95b451811f74 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 49, -99, 24, 64, 6, 19, 66, 5]
Output:
| [
"[77, 49, 64, 19, 5]"
] | task370-38c752297a234b01ab9bddadc7e7bd17 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -81, -86, -68, 79, -87, -75, 36, 87, 33]
Output:
| [
"[-86, -68, 79]"
] | task370-6b8d4ccd468e4a9db0809176d4284b62 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 69, 20]
Output:
| [
"[-35, 20]"
] | task370-e1ce1679b51248e5bdf86d45019be6b2 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -37, 43, -90, 78]
Output:
| [
"[41, -37, 43]"
] | task370-902ab86a195b4c6783263138b99f126a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 61, -88, -78]
Output:
| [
"[-62, 61, -88]"
] | task370-c22ecdbbf24a4c3f876a53874335be93 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 45, -94, 33, 68, 94, 86, 22, 40, 24]
Output:
| [
"[-94, 68, 94, 86, 22, 40]"
] | task370-e060a5a85829470c936ae76f755b04b7 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 79, -99]
Output:
| [
"[79]"
] | task370-a1fd53ba5406486bac83a6e417f3c88b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 14, -3, -47, 89, -19]
Output:
| [
"[14, -47, 89, -19]"
] | task370-3cf508c7233c4984bd3b611a3817d2c6 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 63, -16, -94, -92]
Output:
| [
"[40, -16, -94, -92]"
] | task370-fcd42a649b194dc0835e5658583bca55 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -70, 48, -55, -75, 15, 47, 77, 79, -73, 10]
Output:
| [
"[-23, -70, -55, 47, 77, 79, -73, 10]"
] | task370-d373857f822f4da8a7d818de0e738460 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 75, -66, 97, -100, -75, 28, 64, -29]
Output:
| [
"[97, -100, 28, 64, -29]"
] | task370-22edf31b55814c05b4e4d91098ceec96 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 37, -77, 76, -20, -70, -16, 48, -8, -28, -77]
Output:
| [
"[-38, 37, -77, 76, -20, -70, -16, -8, -28, -77]"
] | task370-2b99df489a50407cbd8cec9e3a20fd7b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 27, 8]
Output:
| [
"[-67, 8]"
] | task370-6ca04df4cf6147858406086c35a18963 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -50]
Output:
| [
"[10, -50]"
] | task370-e3e40a116bcb402bbf97f5f176b725eb |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 61, -58, 18, 48, 31, 95]
Output:
| [
"[-7, 61, -58, 31, 95]"
] | task370-6bda6e2f499f479cae0f554b44fbe2f1 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 66, -62, -35]
Output:
| [
"[53, -62, -35]"
] | task370-757182617e0b445a8ff5ab0b5dbe58cc |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -72, -37, -34, 34, 39, -85, 19, 69, 97]
Output:
| [
"[-38, -4, -37, -34, 34, -85, 19, 97]"
] | task370-631516c0044d4096bd94eada66907015 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -74, -55, 100, 84, 73, -90, 60, 78, 0]
Output:
| [
"[-10, -74, -55, 100, 73]"
] | task370-4549ac98de6a494bb1e363d6811af29b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -44, -44, -15]
Output:
| [
"[31, -44, -44]"
] | task370-825e137541a54f8384adce2f33110de1 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -37, -4, 65, 66]
Output:
| [
"[49, -37, -4, 65]"
] | task370-ce2ce3a58e404387a9e441016208eb05 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 37, -77, -36]
Output:
| [
"[37, -77]"
] | task370-ca0234d4287b473ba7f04ee53b4f7356 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -52, -66, 25, 38, -26, 39, 81, -44, -8, -28]
Output:
| [
"[83, -52, 25, 38, -26, -44, -8, -28]"
] | task370-b2ba5d530b0e43cab35b7293cad8562a |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [-8, -81, 32, -98, -53]
Output:
| [
"[-8, 32, -98, -53]"
] | task370-c42e442c0a6646c7aa17c3203279f06d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 19]
Output:
| [
"[-55, 19]"
] | task370-e9570c700fe348468bb2345ef2f16e8d |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 92, -21, -100, 23, 37, -37]
Output:
| [
"[10, 92, -100, 23, 37, -37]"
] | task370-619d6f719141470e92869738ef4a1813 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -86, 89, 30, -82, 1, 61]
Output:
| [
"[68, -86, 89, -82, 1, 61]"
] | task370-354851abe02b4a59b1e381f11f01f8af |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -14, 76, -83, -50, -1, -42]
Output:
| [
"[-71, -14, 76, -83, -50, -1]"
] | task370-780b6f37b3bb491eb4368969d6d86eae |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -99, 39, -97, -8, -12, 78, -47]
Output:
| [
"[67, -97, -8, -47]"
] | task370-feb646d41c184e08895393d44f164616 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -55]
Output:
| [
"[-55]"
] | task370-efd3ecfe185f49c0a5ec84b620739bfd |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -87, -33, -29, -87]
Output:
| [
"[62, -29]"
] | task370-b49a41b4c23341eabff22accefd426f5 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -44, -100, -40]
Output:
| [
"[52, -44, -100, -40]"
] | task370-a388ee9b4638449c80d6eb0b396ebc12 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 27, -32, -28, 84, 83, -51, -93, 29]
Output:
| [
"[-32, -28, 83, 29]"
] | task370-a673c59123e3404dace7ff22af5731e3 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 15]
Output: [0, 3, 15]
Negative Example 2 -
Input: [6, 4, 11, 13, 6, 9]
Output: [6, 9]
Now complete the following example -
Input: [18, -44, -61, 53, -80, -11]
Output:
| [
"[-44, -61, 53, -80, -11]"
] | task370-b8ccf255c8ef4dcab84250750c7b6752 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -22, -21, 75, -37, 71]
Output:
| [
"[-22, -37, 71]"
] | task370-16510b7ff1914fb68da3872501c39907 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 35, 48, 99, 63, 50]
Output:
| [
"[26, 35, 50]"
] | task370-0cc314ce735e4146aa3c937072af0131 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -1, 96, -99]
Output:
| [
"[10, -1]"
] | task370-7c2c366690c04ec7bc71442e022d0b50 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -41, 24, -84, 64, -79, -61, -86, -4, 24]
Output:
| [
"[64, -41, 64, -79, -61, -86, -4]"
] | task370-3043a47ac6cf47bf98d3f820fd519015 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 12]
Output:
| [
"[-55]"
] | task370-3cd8dab1650c4b88854bcebaa974741b |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 1, -95, 76]
Output:
| [
"[-89, 1, -95, 76]"
] | task370-fdde47152e40459c9e6025fc252913cf |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -83]
Output:
| [
"[-83]"
] | task370-05d1a3fc52e0427b82b59094fb47f7f5 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -50, 14, 72, -59, -79, -56]
Output:
| [
"[25, -50, 14, -59, -79, -56]"
] | task370-c57a9e3e042e46dfa90964fcdaaa61cc |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -60, 36, 89, 75, -26, 29, 46, -73, 80]
Output:
| [
"[-64, 89, -26, 29, 46, -73, 80]"
] | task370-7d0f894e44c24339aae377bda0cf58fb |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -5, -36]
Output:
| [
"[-56, -5]"
] | task370-34fd3ef0ad0d4c98b8be4fa966018af3 |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, 72]
Output:
| [
"[71]"
] | task370-d0f69e422e064f35ba8b0fc57c50e18c |
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3.
Positive Example 1 -
Input: [2, 5, 9, 6, 11]
Output: [2, 5, 11]
Positive Example 2 -
Input: [0, 3, 12, 0, 3, 9]
Output: []
Negative Example 1 -
Input: [7, 0, 8, 3, 7, 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, -86, -78, 10, -96, 13, -90]
Output:
| [
"[-86, 10, 13]"
] | task370-3938704c623a4e5b84cc1270dbe35fcc |