input
stringlengths
666
703
output
sequencelengths
1
1
id
stringlengths
40
40
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [188, 130, 9, 148, 52, 142, 154, 30] Output:
[ "[94, 65, 28, 74, 26, 71, 77, 15]" ]
task206-25ce2af1d3b74b07a5cf2036db752d63
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [173, 138, 28, 42] Output:
[ "[520, 69, 14, 21]" ]
task206-a674d0438f0e4f609813ed4ef46e221b
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [175, 181, 75, 172, 110, 189] Output:
[ "[526, 544, 226, 86, 55, 568]" ]
task206-b731eb25573d4d568ed5af6c218bd8c0
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [143, 150, 103, 173] Output:
[ "[430, 75, 310, 520]" ]
task206-cfb7c9b67b5e46ebbce9351b331c43cd
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [105, 93, 103, 63, 117, 71, 88, 147] Output:
[ "[316, 280, 310, 190, 352, 214, 44, 442]" ]
task206-5e44ceb96c0c4c25b3854abf3fac3af2
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [26, 64, 77, 82, 125, 67, 69] Output:
[ "[13, 32, 232, 41, 376, 202, 208]" ]
task206-3a6db69809d04d9f8159f42b30c4c246
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [21, 117] Output:
[ "[64, 352]" ]
task206-851445834f0e4cf8a865c5b04c812b5a
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [115, 11, 76, 164, 9] Output:
[ "[346, 34, 38, 82, 28]" ]
task206-134a0c2a157448b89453bc389fc563cc
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [189, 82, 124, 36, 32, 130, 17, 169, 139] Output:
[ "[568, 41, 62, 18, 16, 65, 52, 508, 418]" ]
task206-669d06bd0d224ff58072585e0c101c12
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [96, 138, 172, 157, 113, 76] Output:
[ "[48, 69, 86, 472, 340, 38]" ]
task206-1fb80c274fbd48248907a5ce634de624
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [71, 43, 124] Output:
[ "[214, 130, 62]" ]
task206-4562f9e832af47c98992090aad7b09a0
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [32, 136, 98, 118, 146, 46] Output:
[ "[16, 68, 49, 59, 73, 23]" ]
task206-d26d72cf40bf45f2974d1ddcc459c793
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [4, 123, 71, 64, 118, 106, 30, 92] Output:
[ "[2, 370, 214, 32, 59, 53, 15, 46]" ]
task206-65a80160e59b49b882fa3e12b62da38f
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [171, 113, 89, 156, 199, 183] Output:
[ "[514, 340, 268, 78, 598, 550]" ]
task206-ceee4b9aefcb42b1be3370676a17714f
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [59, 122] Output:
[ "[178, 61]" ]
task206-62e616d2720b4df49f39fa1b9f3b9089
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [62, 4, 130, 180, 27, 167] Output:
[ "[31, 2, 65, 90, 82, 502]" ]
task206-c125c46078704b7abe6f5ef84efaa121
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [124, 174, 183] Output:
[ "[62, 87, 550]" ]
task206-31d7b349c4e342528c040a9bbcf03b87
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [134, 94, 137, 134, 160, 192, 28, 63] Output:
[ "[67, 47, 412, 67, 80, 96, 14, 190]" ]
task206-cd9422bd753147b285dc82d83bfe5bfe
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [28, 79, 22, 158, 1, 108] Output:
[ "[14, 238, 11, 79, 4, 54]" ]
task206-dc6ca89aa6a842839afa6ecd729fd4a4
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [163, 1, 69, 8, 177, 90, 167, 132, 68] Output:
[ "[490, 4, 208, 4, 532, 45, 502, 66, 34]" ]
task206-c0b5f1991b7549529f6b1f02c9cd3427
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [17, 41] Output:
[ "[52, 124]" ]
task206-943c4fb2b83345db9a28c701a83beebb
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [90, 8, 159] Output:
[ "[45, 4, 478]" ]
task206-6d9b63ebcb8a48e097332e3b76b0a27f
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [120, 81, 21] Output:
[ "[60, 244, 64]" ]
task206-f5fa3576a49d4406a38679ea744dfef6
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [122, 15, 12, 82] Output:
[ "[61, 46, 6, 41]" ]
task206-bd8d09f685a24ce098c18070a404e944
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [58, 142, 136] Output:
[ "[29, 71, 68]" ]
task206-41c5b2bacb714c9885d8069f377a0725
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [151, 17, 72, 96, 71, 182, 30] Output:
[ "[454, 52, 36, 48, 214, 91, 15]" ]
task206-eda4984bca7b4ad998f427144529e879
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [73, 4, 171] Output:
[ "[220, 2, 514]" ]
task206-c587921341f0413a9f9906efeca60ff2
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [100, 162, 143] Output:
[ "[50, 81, 430]" ]
task206-2e5810aa55f5444599cc8e00607604c5
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [23, 194, 73, 180, 148, 97] Output:
[ "[70, 97, 220, 90, 74, 292]" ]
task206-384daf0a17934994b31dda7547372c24
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [148, 92, 44, 140, 36, 90, 99, 16, 197] Output:
[ "[74, 46, 22, 70, 18, 45, 298, 8, 592]" ]
task206-91751e14234340b3bae8845747213d61
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [51, 167, 21, 164, 52, 189, 127, 179, 35] Output:
[ "[154, 502, 64, 82, 26, 568, 382, 538, 106]" ]
task206-a13f1ecf2d5c4b92b0734851bddbfd48
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [136, 138, 17, 55, 150, 193, 120, 22] Output:
[ "[68, 69, 52, 166, 75, 580, 60, 11]" ]
task206-29d1a2cab7054c21afcfeb80427f3f9f
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [14, 181, 20] Output:
[ "[7, 544, 10]" ]
task206-b31b19e32c844f5c968502b25b551bde
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [74, 136] Output:
[ "[37, 68]" ]
task206-217c44d1b7d94505b89f663dd8f8a385
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [95, 50] Output:
[ "[286, 25]" ]
task206-cc7f2a34d4df4a79a2d6f67ee59db589
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [24, 22, 192, 194, 98, 29, 134, 41] Output:
[ "[12, 11, 96, 97, 49, 88, 67, 124]" ]
task206-4476093748af46c0ab133ef9823e0172
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [45, 9, 166, 121, 93, 137] Output:
[ "[136, 28, 83, 364, 280, 412]" ]
task206-be422fa9ba3548b0b577f3e307047a2f
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [38, 24, 172] Output:
[ "[19, 12, 86]" ]
task206-e897dff0b5cd43b9a8fd4ff33736122a
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [110, 112] Output:
[ "[55, 56]" ]
task206-20267157879b4a9685d3ebc036fb0555
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [126, 79, 131, 106, 6, 191] Output:
[ "[63, 238, 394, 53, 3, 574]" ]
task206-1db8a9d45990404a983b100b210df651
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [52, 118, 144, 88, 173] Output:
[ "[26, 59, 72, 44, 520]" ]
task206-6b081386a39c4a6bb3c26a543e447f2b
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [39, 59, 141, 48, 197, 87, 29] Output:
[ "[118, 178, 424, 24, 592, 262, 88]" ]
task206-cedfbfb2e9d44ea0a458a48e0f581033
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [90, 58, 194] Output:
[ "[45, 29, 97]" ]
task206-8b636a50ba444ae598860f3a288be0e4
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [105, 71, 191] Output:
[ "[316, 214, 574]" ]
task206-5a9343da51f94145b024d151c3b66edd
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [177, 147] Output:
[ "[532, 442]" ]
task206-2044af5a235b46fda9bc7a326e8d9ed9
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [196, 81] Output:
[ "[98, 244]" ]
task206-1ff9833257b043028cd4bcdf37dec68a
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [138, 50, 131, 41] Output:
[ "[69, 25, 394, 124]" ]
task206-e6a96097351741368172ffa45e17f59a
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [119, 145] Output:
[ "[358, 436]" ]
task206-c6ff5d6188a04013b083f13bd7e6d40d
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [19, 5] Output:
[ "[58, 16]" ]
task206-af4894aff8434093b28b912b7e2931df
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [127, 24, 165, 156, 15, 68, 85] Output:
[ "[382, 12, 496, 78, 46, 34, 256]" ]
task206-77260234f5ff4303b14226cc887c5083
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [32, 44, 54] Output:
[ "[16, 22, 27]" ]
task206-3edb0d625fe34b449e5e3b3fa67bc74a
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [50, 154, 146] Output:
[ "[25, 77, 73]" ]
task206-47e932a9216341db86cfce0460ca3ef5
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [1, 199, 104] Output:
[ "[4, 598, 52]" ]
task206-d24ade0527564a22b21bfa743df39e82
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [198, 176] Output:
[ "[99, 88]" ]
task206-6c46145ed18e486eaa04df5cb60bdb01
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [76, 148, 113, 158, 91, 36] Output:
[ "[38, 74, 340, 79, 274, 18]" ]
task206-111daf9ce3ce4374843b286e1b10d4b7
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [156, 91, 110, 32] Output:
[ "[78, 274, 55, 16]" ]
task206-d0e6b14669fb40b1aa428d75ad622300
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [7, 29, 180, 85] Output:
[ "[22, 88, 90, 256]" ]
task206-13927eb3fec847b1931afc8f72e8d014
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [25, 25, 104, 68, 123, 45, 60] Output:
[ "[76, 76, 52, 34, 370, 136, 30]" ]
task206-7f3cee6141674847abb45934c6ed761c
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [53, 21, 169] Output:
[ "[160, 64, 508]" ]
task206-6cddf7aaeea5400cbcb3f7bd28b10ae5
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [133, 162, 100, 122] Output:
[ "[400, 81, 50, 61]" ]
task206-1f13a1f3d18d4bb4ad14ba026b0add8b
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [5, 123, 116, 54, 23, 92, 121, 107] Output:
[ "[16, 370, 58, 27, 70, 46, 364, 322]" ]
task206-ff3c3ac9c75c485d9d9f5b69d2922fdf
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [169, 97, 54] Output:
[ "[508, 292, 27]" ]
task206-f6b031c5bdac45c099d0fc242d3669d3
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [141, 116, 199, 148, 165, 129, 100, 122] Output:
[ "[424, 58, 598, 74, 496, 388, 50, 61]" ]
task206-27e15c9e062c47cb9bbebc78f2823c64
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [65, 12, 10, 183] Output:
[ "[196, 6, 5, 550]" ]
task206-929efd7eca1047a1bd574e14a94839d9
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [5, 10, 79, 168] Output:
[ "[16, 5, 238, 84]" ]
task206-713588561ee74033baed7d9323f633dd
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [138, 79, 165, 182, 150, 176, 178, 120] Output:
[ "[69, 238, 496, 91, 75, 88, 89, 60]" ]
task206-6b0c7077c40646dbb28b0fb4695c5e95
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [112, 80, 199, 44, 70, 116, 45, 61] Output:
[ "[56, 40, 598, 22, 35, 58, 136, 184]" ]
task206-d3d5d66f5474483fb2bbb118ff4a0c49
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [28, 108, 163, 16, 41, 159] Output:
[ "[14, 54, 490, 8, 124, 478]" ]
task206-c42d40d1871b4c06b36979c99b840249
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [94, 3, 154, 50, 133, 68, 6] Output:
[ "[47, 10, 77, 25, 400, 34, 3]" ]
task206-50028dbff1bb40ca94c1c88bdb0ff352
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [61, 53, 185] Output:
[ "[184, 160, 556]" ]
task206-d8e04e34ece64af88e1e2b0974969d24
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [168, 42, 120, 141] Output:
[ "[84, 21, 60, 424]" ]
task206-ad0b399c89ae4d06bec1e9fe3b154fcb
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [69, 189, 7, 149, 19] Output:
[ "[208, 568, 22, 448, 58]" ]
task206-8102ebff231a4e75816b4a79c352609f
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [142, 25, 83, 131, 110, 90] Output:
[ "[71, 76, 250, 394, 55, 45]" ]
task206-e06f8584f74446bdb4c4d18c38891c90
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [73, 103, 18, 71, 124, 194, 137, 64] Output:
[ "[220, 310, 9, 214, 62, 97, 412, 32]" ]
task206-20fed11c804a472d8ff88b7248d11888
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [105, 83, 38, 103, 78] Output:
[ "[316, 250, 19, 310, 39]" ]
task206-7ca218583fb64c819e9ad2c828b17297
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [158, 59, 69, 83, 65, 167, 72, 152] Output:
[ "[79, 178, 208, 250, 196, 502, 36, 76]" ]
task206-67e7db9c5fe54f7d8c9f5ff103e0a47a
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [152, 193, 69, 159, 27, 29, 158, 7] Output:
[ "[76, 580, 208, 478, 82, 88, 79, 22]" ]
task206-56bd9ccefd884a42a907046c2e56f937
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [18, 118, 41, 11, 180, 50, 175, 177, 196] Output:
[ "[9, 59, 124, 34, 90, 25, 526, 532, 98]" ]
task206-489b90423c3b44878a26c50759b2fe59
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [196, 62, 170, 186, 41] Output:
[ "[98, 31, 85, 93, 124]" ]
task206-a8efd79e9a7c410fad6171e38bb9c806
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [37, 130, 155, 38, 89] Output:
[ "[112, 65, 466, 19, 268]" ]
task206-8236fc5442a646799b27b1f81b34513c
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [137, 31, 177, 199, 34, 8] Output:
[ "[412, 94, 532, 598, 17, 4]" ]
task206-d2654795550240b5bb655b4b9714806c
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [116, 52, 138] Output:
[ "[58, 26, 69]" ]
task206-22d61d97f33f458eb5640407e9247750
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [21, 191, 144, 185, 180, 154, 83] Output:
[ "[64, 574, 72, 556, 90, 77, 250]" ]
task206-d2761e963b994b149fad4a92196cdb5d
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [75, 187, 85, 36, 2, 67, 34, 115, 134] Output:
[ "[226, 562, 256, 18, 1, 202, 17, 346, 67]" ]
task206-035e380b5fb6410fabbb437cba72de6a
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [195, 59, 121, 6, 7] Output:
[ "[586, 178, 364, 3, 22]" ]
task206-b8f114399f6841f7bf1e018c6bef3354
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [23, 138, 108, 92] Output:
[ "[70, 69, 54, 46]" ]
task206-2e1082be649c46adba635ba52bb34031
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [40, 105, 16, 80] Output:
[ "[20, 316, 8, 40]" ]
task206-bd370ecb05a144238b4bf4541dfd1313
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [64, 177, 70, 89, 192] Output:
[ "[32, 532, 35, 268, 96]" ]
task206-bcdfaf81a2864ff5a784373aaf569be7
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [54, 34, 108, 5, 6, 146, 82, 4, 178] Output:
[ "[27, 17, 54, 16, 3, 73, 41, 2, 89]" ]
task206-614185c2e6f74ba09544a299ee9753aa
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [105, 2, 123, 143, 42, 143, 149, 117, 88] Output:
[ "[316, 1, 370, 430, 21, 430, 448, 352, 44]" ]
task206-93fddefd08cb4de98d6c79e2194be0a6
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [9, 132, 164, 191, 80, 72] Output:
[ "[28, 66, 82, 574, 40, 36]" ]
task206-3a65797fb35445ffa9d2876d1918e472
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [152, 77] Output:
[ "[76, 232]" ]
task206-1aa817d3a11c4c938b46a4c8e1163e87
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [64, 10, 39, 96, 63, 196, 100] Output:
[ "[32, 5, 118, 48, 190, 98, 50]" ]
task206-756382b6a33343248b750b7d8804c2e7
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [107, 52, 175, 128, 110, 119] Output:
[ "[322, 26, 526, 64, 55, 358]" ]
task206-ce51814ec0c4412abaf25f66c65a1843
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [54, 172, 60, 17] Output:
[ "[27, 86, 30, 52]" ]
task206-d69b4894e4214c2185978b5aa05034e0
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [105, 200, 142, 14, 197, 30, 31] Output:
[ "[316, 100, 71, 7, 592, 15, 94]" ]
task206-860293ffe1474881aec44376f1e7fbcc
Definition: In this task you will be given a list of integers. For every element in the list, if the element is even you should divide by two, if the element is odd you should multiply by three then add one. The output should be a list of integers that is the result of applying that logic to the input list. Positive Example 1 - Input: [7, 9, 2, 8] Output: [22, 28, 1, 4] Positive Example 2 - Input: [3, 4, 5, 6, 7] Output: [10, 2, 16, 3, 22] Negative Example 1 - Input: [4, 10, 5, 11] Output: [4, 10, 5, 11, 2, 5, 16, 34] Negative Example 2 - Input: [3, 9, 4, 1, 2] Output: [1.5, 4.5, 13, 0.5, 7] Now complete the following example - Input: [17, 26, 22, 33, 82, 160, 86, 175, 50] Output:
[ "[52, 13, 11, 100, 41, 80, 43, 526, 25]" ]
task206-6b04a1cb19fe401097b4f79ba0114e8e