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: [-42, -24, -73, -78, 36, 47] Output:
[ "[-73, 47]" ]
task370-a7d63d693ebb4c48a4706833c88372f2
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -80] Output:
[ "[73, -80]" ]
task370-63b6140b25904c29a0069316b901c70f
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -36, 22] Output:
[ "[-82, 22]" ]
task370-356f56c90a2a4dc2a2d3c6f078023440
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -53, -34, 1, 77, 65, 91, 97] Output:
[ "[-53, -34, 1, 77, 65, 91, 97]" ]
task370-54d88fcb8d3f4c83abe9fea27b00457a
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -12, -69, 34, 54, -67, -6, -22, 67, 33] Output:
[ "[83, 34, -67, -22, 67]" ]
task370-8cd415d771d0412da3fdfd9f75ed1b78
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 87, -52, -12] Output:
[ "[-13, -52]" ]
task370-19c1bfaac8e242a98cd7c466843442d5
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -81, -98, -42, 23, -51, 54, -80, -38, 80, -35] Output:
[ "[-98, 23, -80, -38, 80, -35]" ]
task370-6d0d59294915476cb9c5530bd31ad9a9
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -1, -69, 5, -89, -37, -72, 86, -44, -94, -35] Output:
[ "[-1, 5, -89, -37, 86, -44, -94, -35]" ]
task370-1454b2f3a5034ce88e78cc59a95cb675
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 24] Output:
[ "[89]" ]
task370-31e3a50cd7bb43e1a8ff5a70d12e0dd6
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -93, -88, -84, 49, -19, -22] Output:
[ "[-59, -88, 49, -19, -22]" ]
task370-a85785bcd970445a843fbcd5e94a7716
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 39, -45, 25, 26, -27, 90, -66, -43] Output:
[ "[25, 26, -43]" ]
task370-4185d0ddb6924f6e8e18aa985fadace9
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 56, -48, 71, 70, 53, 2, -21, -45, 15] Output:
[ "[56, 71, 70, 53, 2]" ]
task370-04bbbbb729bf47fcb1302098d8d94456
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -40, -23, -39, -57, 85, 60] Output:
[ "[55, -40, -23, 85]" ]
task370-0af4343a2c224bcbbbd318ee366392f7
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [24, -68, 69, -28, 94, 20, -25, -90, -24] Output:
[ "[-68, -28, 94, 20, -25]" ]
task370-b150d87c22894fa48eff6634e085f31f
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 54, -72, -83] Output:
[ "[50, -83]" ]
task370-0b1de356b7754e399bb55d77ab886ca7
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 3, 54] Output:
[ "[47]" ]
task370-8b4b43bb12144b619298dcf8fff6af44
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -57, -100, -9, -22, -19, -1, 86, 56, -85] Output:
[ "[-100, -22, -19, -1, 86, 56, -85]" ]
task370-0104e44f0fa649979fc10931c2ddae37
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 85, -36, -67, 40, 13, -76, -59, 55, -62] Output:
[ "[92, 85, -67, 40, 13, -76, -59, 55, -62]" ]
task370-d4ef305726d34f399ea15217f332af24
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -20] Output:
[ "[-28, -20]" ]
task370-f686b67887644dc4a9176c641eb22369
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -69, -32, -8, -2, 58, 69, -85, -6, -90] Output:
[ "[-71, -32, -8, -2, 58, -85]" ]
task370-5104b677f6a14e808e28690dbcea9a5d
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -28, 60, -40, 32, 64, 98, 13, 13, -18, 9] Output:
[ "[-86, -28, -40, 32, 64, 98, 13, 13]" ]
task370-ddeb1db009194d3ab9c7130f87557ee9
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 6, -46, -100, -50] Output:
[ "[98, -46, -100, -50]" ]
task370-811e55f5db9b48f49d212512d3653cdd
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 23, -100, 34, -10, 35, 46, -30] Output:
[ "[23, -100, 34, -10, 35, 46]" ]
task370-19b8d83174be48e281631dbe0dc10f1e
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 58, 70, 32, 11, 41, 36, -99, 98] Output:
[ "[-71, 58, 70, 32, 11, 41, 98]" ]
task370-1c3f86c755d84f7b94c9c4f22242edb3
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -35, -93, -32, 45, -46, -24] Output:
[ "[-74, -35, -32, -46]" ]
task370-e5545e2c00b64b36b75676b0ccb14692
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 71, 51] Output:
[ "[-17, 71]" ]
task370-d895152ab15d4e9b8a2855e7649adca7
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -66, -23] Output:
[ "[-64, -23]" ]
task370-1ecb5cf7a2e94f2b91a6a1f1e6ea616a
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 46, -67, 39, 41, 46, 35, 58, 55] Output:
[ "[2, 46, -67, 41, 46, 35, 58, 55]" ]
task370-c2b23eddd3574163beec8d07d04c2bd4
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -90, 59, 0, 80, 1, -1] Output:
[ "[43, 59, 80, 1, -1]" ]
task370-15a8db70ba95404db3b0013da47003cb
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 40, 90, -48, -51, -3, -83, -22, 4, -22, -18] Output:
[ "[25, 40, -83, -22, 4, -22]" ]
task370-311137ef933c44ecbb10452c18502bb0
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 38, -67] Output:
[ "[-35, 38, -67]" ]
task370-d57fa7e651244ba18f495423fb6a528b
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [4, -33, 38, 28, -68, -58, -65, -53, 67] Output:
[ "[4, 38, 28, -68, -58, -65, -53, 67]" ]
task370-678728f2c9184d4289dc5a1fff639ffb
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [20, 47, -73, 76, -57, -58, 5, -85, -7, 70] Output:
[ "[20, 47, -73, 76, -58, 5, -85, -7, 70]" ]
task370-15298f427bd04f91b25e28bdf9b1e5c2
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -69, -13] Output:
[ "[-13]" ]
task370-3f598238e6a84858ba8feba357b92050
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 42, 62, -32] Output:
[ "[56, 62, -32]" ]
task370-7f99823a18214cbf8b390a0036df6b4f
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 75, -74] Output:
[ "[91, -74]" ]
task370-d79f29cbb97e4b0cacd5a902069925c4
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [-72, 52] Output:
[ "[52]" ]
task370-079686d0916f45a9aee12e4507b96292
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 20, 70] Output:
[ "[77, 20, 70]" ]
task370-2a1b071da9344c84b64e0782b6aef0ac
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -22, 73, -20, -82] Output:
[ "[41, -22, 73, -20, -82]" ]
task370-ba3d5962097346c6a6e5f89f519b9088
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -24, 0, -69, 9] Output:
[ "[]" ]
task370-294bac1ea212429e9f1868aab5838620
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -85, -62, -66, 65, 4, -15, 7] Output:
[ "[-85, -62, 65, 4, 7]" ]
task370-61e2e5f3dd6b4adeac9b9d2e139d6e2f
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [20, -37, 0, 84, -4, -93, -19, -72, -2, 38, 91] Output:
[ "[20, -37, -4, -19, -2, 38, 91]" ]
task370-7a22b423d2ae4164a82ac3da91811f26
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -57, 66] Output:
[ "[-55]" ]
task370-ef7c93794f084bb5940b5f0da1b2ef63
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [-79, -24] Output:
[ "[-79]" ]
task370-f290b2fad64a498cb4ce64ecc067ab5c
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -21, 28, -50, 59, 69, 48, -17, 97] Output:
[ "[28, -50, 59, -17, 97]" ]
task370-94fc0d13ef584dc8ad6a09e5eb1d0c07
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -86, -48, 65, 52, -2] Output:
[ "[-86, 65, 52, -2]" ]
task370-7a7db5ffa67c44d8ab54a5f02d021d89
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -71, 89, 46, -9] Output:
[ "[41, -71, 89, 46]" ]
task370-8faabdaf239141a1b3e835c0ab7dfd79
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -60, -82, -18] Output:
[ "[91, -82]" ]
task370-59deec1026f74fdb8207db2dd3d8de40
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [72, -42, -14, 44, 46, 88, 87, 0, 42, 61, 27] Output:
[ "[-14, 44, 46, 88, 61]" ]
task370-fa516b0c04cd4809baa5c45e4e8ee1b8
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 37, -34, -63, 0] Output:
[ "[37, -34]" ]
task370-deafd0786eee4760a5d3ab4d27e3e1e8
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [84, 71, -72] Output:
[ "[71]" ]
task370-77e97d1968dd48308f409af9ae6c8caa
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 48, -91, 81, 93] Output:
[ "[-91]" ]
task370-4b8cb37ba39341778f9c86690bb4df24
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 32, 38, -65] Output:
[ "[32, 38, -65]" ]
task370-79ce567bc5f544a5820c782578f744ff
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [90, -26, 97, -23] Output:
[ "[-26, 97, -23]" ]
task370-3641cb97258f4c2cbf2bfa334b0ed664
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -15, 76, -19, -2, -35, 1, -50] Output:
[ "[76, -19, -2, -35, 1, -50]" ]
task370-b454322d3caf453983112e6840d3d8e5
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -67, -12, -35, 18, 71, 45, -56] Output:
[ "[-67, -35, 71, -56]" ]
task370-a8003452a54d4f17851b53a34f249f0b
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 76, 6, -44, -81, -11, -74, 19, 8] Output:
[ "[-29, 76, -44, -11, -74, 19, 8]" ]
task370-b7b26e0779aa4ef0b12aed9911d2c072
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 34, -48, -68, 57, 79, 21, 57] Output:
[ "[47, 34, -68, 79]" ]
task370-e8e3e1e5d9294b979f70c50e9fe7cdb0
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [24, -82] Output:
[ "[-82]" ]
task370-c67932e76cbd4ac4ba8d7158e36acda0
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -49, -82] Output:
[ "[86, -49, -82]" ]
task370-e28ce0a34e114ba0b76fb73313db1dda
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 38, 50] Output:
[ "[-94, 38, 50]" ]
task370-74e8915f2b2445f894438857c3b5cc46
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [-79, -40, 68, 69, -70, -46, -42] Output:
[ "[-79, -40, 68, -70, -46]" ]
task370-2ecc619e01ec4141b3b8b977124869bb
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 15, -73, 62, 35, -4, 39, 39, -66, 85] Output:
[ "[28, -73, 62, 35, -4, 85]" ]
task370-571cd2df04af4837ab02b20c6b3e6291
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 29, 47, 92, 98, -82, 71, 11, 87, -19, 86] Output:
[ "[29, 47, 92, 98, -82, 71, 11, -19, 86]" ]
task370-4bcbea1c99aa4b6d8d5c5e016043aeaa
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [-72, 81, -46, 96, -97, 16, -26] Output:
[ "[-46, -97, 16, -26]" ]
task370-8df852b1b14946668fae887767af12bb
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 76, 44, 70, 65, -79, 2, -45] Output:
[ "[77, 76, 44, 70, 65, -79, 2]" ]
task370-f77ef9ba04e743ecb47c9c35aa4a9924
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 91, 38, 65, 58] Output:
[ "[-98, 91, 38, 65, 58]" ]
task370-18942d23597443718b1edf1db04abdd8
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -88, 83, 65, -89, 21, 40, -58, -14, -27] Output:
[ "[64, -88, 83, 65, -89, 40, -58, -14]" ]
task370-9cc32c01471f4ee5b586998da43d9d68
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 64, 77, 36, -90, 61, -34, 11, -97, 51] Output:
[ "[64, 77, 61, -34, 11, -97]" ]
task370-242ddeafa0e4489eb56e50295977cafc
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [34, 39, -6, -76, -17, -16, 76, 45, 34, 2] Output:
[ "[34, -76, -17, -16, 76, 34, 2]" ]
task370-13becb2261ea4fdda59a3cf78edad78a
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -83, 76] Output:
[ "[-83, 76]" ]
task370-e6de82b732ec4949b7d21066a959ab50
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [-20, -38, -98, 39, -66, 15] Output:
[ "[-20, -38, -98]" ]
task370-3f81aeb6ff99482aa58c97c470a40827
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [36, 87, -20, -33, -52, -87, -34, 81, 19] Output:
[ "[-20, -52, -34, 19]" ]
task370-5c384284fa1a40da827dfce91aeee502
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -22] Output:
[ "[40, -22]" ]
task370-012eb9fcd1744740a91c464cba6a6daf
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -88] Output:
[ "[38, 4, -88]" ]
task370-1be13c1de66440f8b10daff042da66b1
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 41, -21, 71, -67, -29, -40, -74, 22, 16] Output:
[ "[41, 71, -67, -29, -40, -74, 22, 16]" ]
task370-38606bb168684d72b54d5c970afc5ef1
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -17, 55, 92, 36, 84, 55, 3, -23, -79] Output:
[ "[-17, 55, 92, 55, -23, -79]" ]
task370-2a5d1cc54aba41ffb4990e6e33c007c5
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -15, -37, -91, -2] Output:
[ "[94, -37, -91, -2]" ]
task370-596d24afdfd54df6848206eca313665b
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -90, 59, 11, 45, -93, 70, -56] Output:
[ "[-31, 59, 11, 70, -56]" ]
task370-b8537c08232f496fb4852f7313152507
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -39] Output:
[ "[-2]" ]
task370-f3b4326d17de44f2bf3c5382f253ebca
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -70, 35, -71, 62, -5, -36] Output:
[ "[-70, 35, -71, 62, -5]" ]
task370-612f4995541945778c0be597299d1d22
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -15, 21, 68, -29, -86, 65, 25, -52, -65, -48] Output:
[ "[-61, 68, -29, -86, 65, 25, -52, -65]" ]
task370-0fa6787500f048cd96f8d24e80177a43
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [-46, -71, 86] Output:
[ "[-46, -71, 86]" ]
task370-f0694091857942ee89cdf5e9d75b18dd
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -16, -77, -82] Output:
[ "[28, -16, -77, -82]" ]
task370-3c2485a026794091b15498f122396e93
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 70, 76, -84] Output:
[ "[70, 76]" ]
task370-6b067c9358714856a87ad1ca8571caa0
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 58] Output:
[ "[-43, 58]" ]
task370-1da2421d86984f32a615eba3d12507d9
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 56, 42, 76, 11, 95, -16, 61, -60] Output:
[ "[56, 76, 11, 95, -16, 61]" ]
task370-09d2c9fb93bf4fe0b17891aa3eead60f
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -21, 36, -63, 47] Output:
[ "[-68, 47]" ]
task370-55e893ebc3e549db99616a70519d1eaf
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 47, 2, -59, 19, -25, -90, -45, 71, 45, -26] Output:
[ "[40, 47, 2, -59, 19, -25, 71, -26]" ]
task370-f79bd9eda5d54e6f9981c260948db237
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 59, -91, -26, -41, -42, -51, 72, 98] Output:
[ "[59, -91, -26, -41, 98]" ]
task370-039268e806b8412e8cb19aef78807017
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -51, -75, 60, -8] Output:
[ "[-8]" ]
task370-b4c9123cc9c5460cb9047bc6b38224ed
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -24, -11] Output:
[ "[97, -11]" ]
task370-14ef611fdfaa4f44b5a8116ab3efe15f
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 15] Output: [0, 3, 15] Negative Example 2 - Input: [6, 4, 11, 13, 6, 9] Output: [6, 9] Now complete the following example - Input: [34, 69, 71, -7] Output:
[ "[34, 71, -7]" ]
task370-73f6262e55224b279fd8d805feae87e3
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -73, 40, 89, 70, 25, 80] Output:
[ "[-68, -73, 40, 89, 70, 25, 80]" ]
task370-be7dbf27eb0940cdb0b918c60076a3ca
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 72, -40, 46, 47] Output:
[ "[-40, 46, 47]" ]
task370-838c5d16999147659388db4ed1d3f46e
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 60, -95, 15] Output:
[ "[-68, -95]" ]
task370-008884463a1046b8aa347380e3a37e6a
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 3, 91, 10, -97] Output:
[ "[73, 91, 10, -97]" ]
task370-428e961939594c4d8f57774ac59e7545
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 4, -99, -51, 56, -8] Output:
[ "[4, 56, -8]" ]
task370-88f6d665864d4811b1f43db76807d47c
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, 36, -83, -88, -62, 91, -100, 96, 52] Output:
[ "[-83, -88, -62, 91, -100, 52]" ]
task370-3783acadce0f4793838d08e13e5971e1
Definition: In this task you will be given a list of integers. You should remove all of the integers that are divisible by 3 from the list. If every integer in the input list is divisible by 3 then an empty list should be returned. Zero is divisible by 3. Positive Example 1 - Input: [2, 5, 9, 6, 11] Output: [2, 5, 11] Positive Example 2 - Input: [0, 3, 12, 0, 3, 9] Output: [] Negative Example 1 - Input: [7, 0, 8, 3, 7, 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, -49, 64, -38, -29] Output:
[ "[-49, 64, -38, -29]" ]
task370-0c3e733fd0234120842efb1055784862