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: [75, 135] Output:
[ "[226, 406]" ]
task206-b6bb4f9510b949ebb75ca6d58f56e11c
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: [139, 89, 198, 9, 89, 158, 144, 168, 119] Output:
[ "[418, 268, 99, 28, 268, 79, 72, 84, 358]" ]
task206-3980b76b25474035956179d88c9e9d63
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, 7, 81, 24, 113] Output:
[ "[47, 22, 244, 12, 340]" ]
task206-c9e61847d8f4423da287e0bd37ff6d61
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, 140, 144, 80, 171, 94] Output:
[ "[69, 70, 72, 40, 514, 47]" ]
task206-987c9da58238470a82876f0ec9b1b2ee
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: [86, 28] Output:
[ "[43, 14]" ]
task206-b43d02a204bb445a95652019cc984831
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: [172, 137] Output:
[ "[86, 412]" ]
task206-06026639ce4249fc91a096be2b9cee9a
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, 40, 145, 73, 199, 148] Output:
[ "[99, 20, 436, 220, 598, 74]" ]
task206-55284b29c9bc42ba99a28b8da1865259
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: [123, 168, 186, 100, 136, 25] Output:
[ "[370, 84, 93, 50, 68, 76]" ]
task206-89967dcdc3324bad9a499a08a9a85a0b
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, 195, 87, 98] Output:
[ "[63, 586, 262, 49]" ]
task206-82017172db7841d5b41fb6de6081c47f
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: [60, 6, 44, 108, 25, 188, 11] Output:
[ "[30, 3, 22, 54, 76, 94, 34]" ]
task206-761eecaf09ce4452b8bf4e519b1970c4
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, 59, 98, 131, 184, 104, 31] Output:
[ "[514, 178, 49, 394, 92, 52, 94]" ]
task206-af794baad68c46059250605a58097617
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, 169, 32, 16, 178, 47] Output:
[ "[430, 508, 16, 8, 89, 142]" ]
task206-4148d74f9d59464a837d8ee8e5c84317
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, 152, 153, 116, 171] Output:
[ "[14, 76, 460, 58, 514]" ]
task206-917e6b9d880d407d9dd169b87fcd76fa
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: [67, 49, 195, 143, 166] Output:
[ "[202, 148, 586, 430, 83]" ]
task206-ec023f11448845249f06bc7779df776b
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: [87, 116] Output:
[ "[262, 58]" ]
task206-458437e281ef41f281920949e60e46ed
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, 187, 190, 89, 38, 169, 127, 186] Output:
[ "[71, 562, 95, 268, 19, 508, 382, 93]" ]
task206-53ebc811e460443fa4091f561afc3a58
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: [131, 64] Output:
[ "[394, 32]" ]
task206-edb25b633a7b47deba32b399811acea7
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: [174, 63, 60] Output:
[ "[87, 190, 30]" ]
task206-6eab1618dfb2406792726fb7a2c78256
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, 88, 167, 98, 145] Output:
[ "[178, 44, 502, 49, 436]" ]
task206-3b332e5ebffe4699b7e19537eb1a8313
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: [80, 179, 71, 40, 42, 114] Output:
[ "[40, 538, 214, 20, 21, 57]" ]
task206-f63f4793777e4b379de8c113c3001657
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: [79, 189] Output:
[ "[238, 568]" ]
task206-17c1a8556fe247539a9a798fc72b148d
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: [72, 101, 101, 133, 163, 153, 20, 24, 15] Output:
[ "[36, 304, 304, 400, 490, 460, 10, 12, 46]" ]
task206-12ea6c28b1d540e5a722ecb7c2c7787a
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: [67, 172, 26] Output:
[ "[202, 86, 13]" ]
task206-514d20a2736e451986f0e4c149994d8c
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, 198, 162, 44, 97, 104, 189, 130] Output:
[ "[178, 99, 81, 22, 292, 52, 568, 65]" ]
task206-002395828d65401aac2c016cb1c8c2bf
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: [179, 75, 51] Output:
[ "[538, 226, 154]" ]
task206-8a0e5be4e5ea4c9d9512c53a7e96f15e
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, 44, 136] Output:
[ "[58, 22, 68]" ]
task206-40168996d08d4790bccb8db0ed22c010
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, 134, 67, 17, 5] Output:
[ "[490, 67, 202, 52, 16]" ]
task206-844e54e972a74b6fb7633b793f80b3b4
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: [41, 66, 143, 123, 58, 145, 147, 18] Output:
[ "[124, 33, 430, 370, 29, 436, 442, 9]" ]
task206-ad5fac8000cc4a118862e9a2522b690f
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: [35, 10, 64, 116, 164, 112, 84, 160] Output:
[ "[106, 5, 32, 58, 82, 56, 42, 80]" ]
task206-24d389fa89b046739f276c9aba6c0a0a
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: [43, 197, 52, 6, 135, 126, 163, 11] Output:
[ "[130, 592, 26, 3, 406, 63, 490, 34]" ]
task206-da8d1c6e70b345f0b32daa2a02c95f3e
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: [81, 179, 199, 87, 62, 164] Output:
[ "[244, 538, 598, 262, 31, 82]" ]
task206-fac892767aec45a19a65e23249becca8
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: [157, 15, 23, 28, 92, 41, 168, 166, 58] Output:
[ "[472, 46, 70, 14, 46, 124, 84, 83, 29]" ]
task206-db7f06142bda4ab19ae6550f4a6729f2
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: [82, 160] Output:
[ "[41, 80]" ]
task206-f0e24a9ecad0448c93b5427fa9120507
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, 95, 88, 198] Output:
[ "[48, 286, 44, 99]" ]
task206-c4058bdfedac45f18fa569772a79ba2f
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: [93, 178, 180, 98] Output:
[ "[280, 89, 90, 49]" ]
task206-bd1374b42fe148d880d1b52a072b4fbe
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, 13, 153, 180, 150, 140, 141] Output:
[ "[16, 40, 460, 90, 75, 70, 424]" ]
task206-2d95346a56ca468eadf0de98bdc1ce88
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: [131, 55, 163, 168, 13, 42] Output:
[ "[394, 166, 490, 84, 40, 21]" ]
task206-4515ebdf04b8477d94cdd47ac4dcb801
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, 92] Output:
[ "[48, 46]" ]
task206-13ff2145d7ac4089961bf6591d3697b5
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: [13, 68, 116, 103, 17, 68, 169, 35] Output:
[ "[40, 34, 58, 310, 52, 34, 508, 106]" ]
task206-b9043848b92e4b83a79cc80272a4e5ad
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: [12, 97, 7, 147] Output:
[ "[6, 292, 22, 442]" ]
task206-e864584ff07a4320ae619957e0460d7e
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: [102, 127] Output:
[ "[51, 382]" ]
task206-c1b3bf3b55c146d78b5e2dc2e9e48417
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: [56, 72, 89, 152, 68, 3, 35] Output:
[ "[28, 36, 268, 76, 34, 10, 106]" ]
task206-0e0e270475a549d1a7baeac653495f9b
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, 62, 56, 127] Output:
[ "[37, 31, 28, 382]" ]
task206-f42ca831ce3f44a08ba9ce55f5b6e6e1
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: [56, 94, 151, 72, 103, 192, 4, 192] Output:
[ "[28, 47, 454, 36, 310, 96, 2, 96]" ]
task206-de5629731b1742548e9a1390ca4d586c
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, 82, 102, 48, 99, 172, 135] Output:
[ "[64, 41, 51, 24, 298, 86, 406]" ]
task206-54e685be98644d28a2ae3a2f2f6e98ad
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: [55, 157] Output:
[ "[166, 472]" ]
task206-04dbbd824fd944c194d7d8a9556acaea
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: [93, 135, 105, 168, 101, 86, 126, 75] Output:
[ "[280, 406, 316, 84, 304, 43, 63, 226]" ]
task206-a8ecdc1d30fb411dbef891baeacf6b75
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: [6, 111] Output:
[ "[3, 334]" ]
task206-3599b262486e42928402834f4494a718
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: [144, 38, 9, 106, 151, 137, 136, 114] Output:
[ "[72, 19, 28, 53, 454, 412, 68, 57]" ]
task206-88befaea5df24ac18f0af8c2bf3319bd
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: [144, 108, 67, 194, 133] Output:
[ "[72, 54, 202, 97, 400]" ]
task206-e731dc37c4724b4198c9e393b9eafb37
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, 77, 162, 164] Output:
[ "[358, 232, 81, 82]" ]
task206-39135a320fbb46afbc4ff93b131409ab
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, 78, 183, 8, 25, 163, 108, 142] Output:
[ "[76, 39, 550, 4, 76, 490, 54, 71]" ]
task206-995b80f54d23416b9873489c92001cfd
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, 177, 149, 83, 152, 155, 80, 200] Output:
[ "[322, 532, 448, 250, 76, 466, 40, 100]" ]
task206-3559550aca1c4c74b4a7245a029f994e
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, 39, 173, 24, 50, 58, 73] Output:
[ "[12, 118, 520, 12, 25, 29, 220]" ]
task206-d0cb91ce60814adbb968fce5a8065aae
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: [140, 13, 200, 65, 19, 134] Output:
[ "[70, 40, 100, 196, 58, 67]" ]
task206-5c7da5656a484f3da68abc5525695876
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, 36, 69, 39] Output:
[ "[20, 18, 208, 118]" ]
task206-30de970884cc4b62bca496591bb8be3b
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, 8, 169, 179, 134, 3, 180] Output:
[ "[29, 4, 508, 538, 67, 10, 90]" ]
task206-ff4fe5db55fa45f3bc62decd17a99ece
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: [46, 93, 105] Output:
[ "[23, 280, 316]" ]
task206-8ee2bccb78d94cae9fcab7e2358a7e5e
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, 63, 138, 48, 83, 142, 11, 172, 108] Output:
[ "[60, 190, 69, 24, 250, 71, 34, 86, 54]" ]
task206-959dee9ec17d47698b10bd8bf8f2baa9
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: [30, 179, 2, 135, 181, 115, 124, 60] Output:
[ "[15, 538, 1, 406, 544, 346, 62, 30]" ]
task206-79d80b5b064d4c18903801490cc3c34d
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, 79, 40, 143, 15] Output:
[ "[26, 238, 20, 430, 46]" ]
task206-9ba56ed405a34e56b97ef9e23c831dec
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: [91, 140, 121, 136, 147] Output:
[ "[274, 70, 364, 68, 442]" ]
task206-34af17be740b49bf812c930492adc31f
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: [20, 49, 189, 68, 12, 19, 187, 127] Output:
[ "[10, 148, 568, 34, 6, 58, 562, 382]" ]
task206-ae86a743a73c4326824ef4a297dbe899
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, 95, 35, 174, 158, 95] Output:
[ "[37, 286, 106, 87, 79, 286]" ]
task206-e1757e82afe44332a1b764a3ee81d4e0
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: [191, 134, 69, 188, 123, 25, 15, 79, 171] Output:
[ "[574, 67, 208, 94, 370, 76, 46, 238, 514]" ]
task206-4425e51c3b7b44c4883b4801b06213dc
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: [12, 77, 11, 167, 31, 69, 77, 176, 112] Output:
[ "[6, 232, 34, 502, 94, 208, 232, 88, 56]" ]
task206-7e636c6a013b41cd975031dd6a39100c
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, 32, 194, 44, 187, 25, 40] Output:
[ "[55, 16, 97, 22, 562, 76, 20]" ]
task206-761670859ee94a93ba24b3b08e8b47cb
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, 198] Output:
[ "[47, 99]" ]
task206-d957aeadc09b4362b69efc0821dcd6de
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, 5, 47, 197, 152, 136, 156] Output:
[ "[29, 16, 142, 592, 76, 68, 78]" ]
task206-6f57454894fc4726861d576332537308
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, 12, 29, 45, 80, 181, 119, 77, 189] Output:
[ "[20, 6, 88, 136, 40, 544, 358, 232, 568]" ]
task206-1b87d0c5917e4551a104d519f6943a06
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: [118, 116, 165, 96, 17] Output:
[ "[59, 58, 496, 48, 52]" ]
task206-2e0483e52a994b4eae162e66c74ba7cb
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, 52, 98, 99] Output:
[ "[346, 26, 49, 298]" ]
task206-b0b423ee92d4414ab7ec268638327e39
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: [12, 180, 102, 88, 30, 27, 74] Output:
[ "[6, 90, 51, 44, 15, 82, 37]" ]
task206-feda30749419431787edd5a93ceb3a29
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: [48, 108] Output:
[ "[24, 54]" ]
task206-9b09a943dc9a43ff963d4bbba5fdb933
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: [159, 30] Output:
[ "[478, 15]" ]
task206-2870680c3f3f4dd6bff7f991d14637f3
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, 20, 162, 172] Output:
[ "[37, 10, 81, 86]" ]
task206-bc005a14e3ee4c0894a9aad475c57e90
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, 46, 73, 12, 4, 143, 24, 123] Output:
[ "[16, 23, 220, 6, 2, 430, 12, 370]" ]
task206-08205a58834140bea60e825f1628335b
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: [102, 147, 87, 25, 161, 165, 144, 31, 118] Output:
[ "[51, 442, 262, 76, 484, 496, 72, 94, 59]" ]
task206-991fb25e32f04b259d055253d2bd3570
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: [182, 109, 167, 17, 180, 160, 172] Output:
[ "[91, 328, 502, 52, 90, 80, 86]" ]
task206-8b941ba57a1d42ca90925af430520638
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: [182, 5, 93, 73, 46, 94, 122, 57] Output:
[ "[91, 16, 280, 220, 23, 47, 61, 172]" ]
task206-1ce30fec294e4b8d9e705b31e881ba6f
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, 98, 173, 157, 117, 177, 78] Output:
[ "[94, 49, 520, 472, 352, 532, 39]" ]
task206-2dd3460e992f4c66a4b21faa9e6986a5
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: [184, 120] Output:
[ "[92, 60]" ]
task206-66ddaba5f58646ec956322804f5c4d3e
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: [86, 164, 28, 152, 96, 81] Output:
[ "[43, 82, 14, 76, 48, 244]" ]
task206-7593c335747047b4bdcad0990f4540aa
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: [167, 27, 68, 17, 93, 66, 38] Output:
[ "[502, 82, 34, 52, 280, 33, 19]" ]
task206-5971c903c6634c308eb376a982c20a83
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, 38] Output:
[ "[14, 19]" ]
task206-ef2d0b5652c4438e9be73096623ef8b9
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, 188, 16, 13, 82, 29, 25] Output:
[ "[16, 94, 8, 40, 41, 88, 76]" ]
task206-9098c621fd264d289eb17f1d80e07ddd
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: [150, 1, 169, 93, 195, 155, 56, 124] Output:
[ "[75, 4, 508, 280, 586, 466, 28, 62]" ]
task206-132307b49dd447dda3d9fced51cadeb9
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, 94, 5] Output:
[ "[454, 47, 16]" ]
task206-22afc931e5c44d06a5d959c667498ab5
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: [46, 1] Output:
[ "[23, 4]" ]
task206-5f5e84a44df6492b94cd69194892c6dc
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: [193, 13, 69, 64, 148, 108, 23] Output:
[ "[580, 40, 208, 32, 74, 54, 70]" ]
task206-354899f05df5451e8c6bb940d872f1b0
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: [10, 28, 29, 34, 183, 1] Output:
[ "[5, 14, 88, 17, 550, 4]" ]
task206-d40d23e2965144508a2d132a6e026385
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: [162, 184] Output:
[ "[81, 92]" ]
task206-8ebe119c4641411790106723e21d0884
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: [104, 136, 98, 131, 68, 177] Output:
[ "[52, 68, 49, 394, 34, 532]" ]
task206-b94dfd64e10a44378efdb28ab4026e84
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, 90, 163, 126, 40] Output:
[ "[63, 45, 490, 63, 20]" ]
task206-d2c3783a1be44b3c8dad773d60d3b16e
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: [131, 3, 91, 6, 164, 36, 111] Output:
[ "[394, 10, 274, 3, 82, 18, 334]" ]
task206-91812a1b886248f8b635c989a3b5432f
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: [46, 14, 123, 84, 26] Output:
[ "[23, 7, 370, 42, 13]" ]
task206-3734901fdf0b457692a21b4a0fda70ed
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: [47, 53, 187, 31, 145] Output:
[ "[142, 160, 562, 94, 436]" ]
task206-57382140fa4c48e3a1b19a27ca235236
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, 95, 135] Output:
[ "[70, 286, 406]" ]
task206-2b40ce40914240e08571746a4919abb2
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, 170, 191, 72] Output:
[ "[26, 85, 574, 36]" ]
task206-5dc881ffca3b4e72aec1e597cd802eb4
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: [81, 135, 196, 90] Output:
[ "[244, 406, 98, 45]" ]
task206-69080bda7a6948e7ba0810c4a3de10be