input
stringlengths
1.24k
1.25k
output
sequencelengths
1
1
id
stringlengths
41
41
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [74, 61, 242, 266, 128, 193, 257, 175, 36, 94, 184, 296, 295, 172, 121, 77, 221, 72, 287, 173] k=5 Output:
[ "[79, 66, 247, 271, 133, 198, 262, 180, 41, 99, 189, 301, 300, 177, 126, 82, 226, 77, 292, 178]" ]
task1190-cb162309b6c94e99827c2c2d8b1ecf9e
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [134, 69, 95, 213, 200, 72, 140, 271, 19, 130, 53, 239, 157, 59, 122, 285, 58, 36, 235, 22] k=1 Output:
[ "[135, 70, 96, 214, 201, 73, 141, 272, 20, 131, 54, 240, 158, 60, 123, 286, 59, 37, 236, 23]" ]
task1190-17069365b1c046a0a9a69219de2cdcf6
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [285, 243, 99, 34, 27, 173, 71, 52, 276, 23, 209, 43, 206, 245, 12, 136, 147, 275, 195, 76] k=12 Output:
[ "[297, 255, 111, 46, 39, 185, 83, 64, 288, 35, 221, 55, 218, 257, 24, 148, 159, 287, 207, 88]" ]
task1190-62d9a029750948108fe14090546830bf
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [175, 49, 106, 250, 173, 44, 203, 221, 104, 211, 119, 181, 36, 267, 51, 289, 183, 42, 111, 196] k=8 Output:
[ "[183, 57, 114, 258, 181, 52, 211, 229, 112, 219, 127, 189, 44, 275, 59, 297, 191, 50, 119, 204]" ]
task1190-c4fb826383c84f8fb821493f47cace0d
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [91, 166, 151, 118, 161, 172, 49, 176, 177, 226, 233, 259, 96, 205, 113, 90, 92, 188, 268, 198] k=14 Output:
[ "[105, 180, 165, 132, 175, 186, 63, 190, 191, 240, 247, 273, 110, 219, 127, 104, 106, 202, 282, 212]" ]
task1190-ba829c8fdd9b4132814871e841b0ad16
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [25, 237, 206, 264, 205, 283, 268, 247, 100, 248, 263, 92, 64, 199, 244, 91, 132, 226, 26, 88] k=10 Output:
[ "[35, 247, 216, 274, 215, 293, 278, 257, 110, 258, 273, 102, 74, 209, 254, 101, 142, 236, 36, 98]" ]
task1190-bb9150852ece403e9fe6fd303931e746
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [245, 21, 132, 240, 201, 182, 219, 13, 95, 94, 127, 65, 92, 169, 292, 205, 53, 296, 130, 216] k=18 Output:
[ "[263, 39, 150, 258, 219, 200, 237, 31, 113, 112, 145, 83, 110, 187, 310, 223, 71, 314, 148, 234]" ]
task1190-e375cdb1f0484b5bbdc40631fbd933c3
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [222, 179, 231, 246, 288, 258, 282, 212, 156, 224, 133, 32, 34, 178, 28, 116, 256, 284, 155, 140] k=13 Output:
[ "[235, 192, 244, 259, 301, 271, 295, 225, 169, 237, 146, 45, 47, 191, 41, 129, 269, 297, 168, 153]" ]
task1190-a5870da676f643a2bf4a3ef7266f758b
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [133, 281, 294, 97, 66, 269, 39, 92, 25, 162, 16, 226, 76, 119, 268, 12, 296, 103, 211, 163] k=1 Output:
[ "[134, 282, 295, 98, 67, 270, 40, 93, 26, 163, 17, 227, 77, 120, 269, 13, 297, 104, 212, 164]" ]
task1190-5f671bfe47664da883b8300b3ff127a8
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [224, 294, 231, 51, 252, 216, 106, 168, 154, 196, 172, 273, 79, 202, 123, 260, 259, 210, 17, 209] k=3 Output:
[ "[227, 297, 234, 54, 255, 219, 109, 171, 157, 199, 175, 276, 82, 205, 126, 263, 262, 213, 20, 212]" ]
task1190-e18db85a2e20425ebb745ac05bf8204c
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [132, 37, 129, 220, 291, 89, 11, 135, 212, 104, 247, 145, 146, 65, 46, 15, 42, 83, 150, 216] k=11 Output:
[ "[143, 48, 140, 231, 302, 100, 22, 146, 223, 115, 258, 156, 157, 76, 57, 26, 53, 94, 161, 227]" ]
task1190-3473fa6948704020bfc26e8bb73a484f
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [57, 229, 155, 238, 98, 106, 216, 96, 123, 48, 59, 191, 268, 166, 158, 126, 28, 149, 73, 168] k=3 Output:
[ "[60, 232, 158, 241, 101, 109, 219, 99, 126, 51, 62, 194, 271, 169, 161, 129, 31, 152, 76, 171]" ]
task1190-6637e85d067243a59eb08b6f484e8672
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [94, 120, 69, 205, 103, 104, 44, 204, 100, 37, 96, 244, 61, 143, 233, 299, 224, 63, 11, 48] k=12 Output:
[ "[106, 132, 81, 217, 115, 116, 56, 216, 112, 49, 108, 256, 73, 155, 245, 311, 236, 75, 23, 60]" ]
task1190-57b57766fb1e45f2a5af55457bdea7c8
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [103, 45, 118, 268, 181, 178, 92, 24, 150, 261, 154, 87, 85, 246, 33, 135, 185, 136, 156, 248] k=20 Output:
[ "[123, 65, 138, 288, 201, 198, 112, 44, 170, 281, 174, 107, 105, 266, 53, 155, 205, 156, 176, 268]" ]
task1190-6c2b727979194a02bee49a16f31c66e3
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [116, 126, 64, 174, 227, 194, 234, 134, 199, 135, 255, 153, 108, 129, 207, 193, 106, 76, 151, 105] k=11 Output:
[ "[127, 137, 75, 185, 238, 205, 245, 145, 210, 146, 266, 164, 119, 140, 218, 204, 117, 87, 162, 116]" ]
task1190-8949c8574a654beea2efb2bfb258d538
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [135, 262, 192, 181, 138, 179, 17, 203, 150, 73, 153, 38, 221, 296, 19, 116, 101, 126, 119, 25] k=1 Output:
[ "[136, 263, 193, 182, 139, 180, 18, 204, 151, 74, 154, 39, 222, 297, 20, 117, 102, 127, 120, 26]" ]
task1190-bc64c72efb1e4c2fa6fd4e54a170f33c
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [130, 182, 137, 279, 61, 211, 42, 132, 68, 87, 230, 181, 232, 298, 274, 148, 170, 264, 195, 94] k=3 Output:
[ "[133, 185, 140, 282, 64, 214, 45, 135, 71, 90, 233, 184, 235, 301, 277, 151, 173, 267, 198, 97]" ]
task1190-4b8fcf4967a144c5b1c2cd13bd4fbc3d
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [176, 217, 193, 112, 133, 57, 23, 80, 115, 184, 47, 93, 77, 189, 200, 241, 238, 294, 226, 291] k=20 Output:
[ "[196, 237, 213, 132, 153, 77, 43, 100, 135, 204, 67, 113, 97, 209, 220, 261, 258, 314, 246, 311]" ]
task1190-9e552102ab974519963ae4af9ea1b252
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [155, 96, 86, 196, 13, 83, 157, 295, 240, 117, 247, 94, 98, 214, 56, 259, 251, 100, 237, 183] k=2 Output:
[ "[157, 98, 88, 198, 15, 85, 159, 297, 242, 119, 249, 96, 100, 216, 58, 261, 253, 102, 239, 185]" ]
task1190-c7fbe536090d4900b3dff083b4c68d26
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [176, 220, 296, 214, 210, 134, 23, 219, 188, 118, 286, 12, 111, 106, 281, 89, 228, 233, 172, 160] k=14 Output:
[ "[190, 234, 310, 228, 224, 148, 37, 233, 202, 132, 300, 26, 125, 120, 295, 103, 242, 247, 186, 174]" ]
task1190-d2abf208dba14766b3975fa1f0081326
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [119, 59, 35, 253, 266, 286, 259, 65, 118, 278, 19, 201, 75, 72, 219, 100, 67, 176, 241, 289] k=2 Output:
[ "[121, 61, 37, 255, 268, 288, 261, 67, 120, 280, 21, 203, 77, 74, 221, 102, 69, 178, 243, 291]" ]
task1190-8ddf2630a19a449a98d26233d94260cd
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [274, 132, 277, 297, 145, 40, 152, 298, 147, 141, 11, 259, 228, 213, 255, 284, 144, 175, 194, 32] k=5 Output:
[ "[279, 137, 282, 302, 150, 45, 157, 303, 152, 146, 16, 264, 233, 218, 260, 289, 149, 180, 199, 37]" ]
task1190-7b1410ca7e9543119e573829cff45c1f
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [179, 53, 147, 13, 62, 211, 173, 154, 265, 246, 251, 78, 174, 294, 299, 160, 285, 28, 236, 156] k=3 Output:
[ "[182, 56, 150, 16, 65, 214, 176, 157, 268, 249, 254, 81, 177, 297, 302, 163, 288, 31, 239, 159]" ]
task1190-ad58d32530974f60a96b6b9af0c8c1dc
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [105, 147, 171, 18, 294, 33, 158, 142, 86, 141, 79, 224, 250, 140, 214, 149, 107, 194, 25, 82] k=6 Output:
[ "[111, 153, 177, 24, 300, 39, 164, 148, 92, 147, 85, 230, 256, 146, 220, 155, 113, 200, 31, 88]" ]
task1190-86693f9dc98e45fc8f5e40935a09c902
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [237, 55, 150, 169, 184, 133, 267, 293, 144, 216, 29, 224, 120, 285, 291, 46, 212, 244, 32, 207] k=9 Output:
[ "[246, 64, 159, 178, 193, 142, 276, 302, 153, 225, 38, 233, 129, 294, 300, 55, 221, 253, 41, 216]" ]
task1190-158e79340b3d4fc7abe5bb1e7fee84cb
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [292, 225, 258, 278, 73, 95, 230, 145, 49, 195, 146, 134, 31, 200, 244, 51, 34, 142, 219, 227] k=4 Output:
[ "[296, 229, 262, 282, 77, 99, 234, 149, 53, 199, 150, 138, 35, 204, 248, 55, 38, 146, 223, 231]" ]
task1190-af0b65d68e614931a98868043b9b5fbc
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [226, 167, 246, 128, 270, 89, 131, 288, 262, 43, 36, 17, 16, 283, 225, 286, 206, 54, 88, 123] k=17 Output:
[ "[243, 184, 263, 145, 287, 106, 148, 305, 279, 60, 53, 34, 33, 300, 242, 303, 223, 71, 105, 140]" ]
task1190-33012d93c92e4aea9fc9573c42949d8d
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [147, 111, 189, 164, 201, 63, 212, 49, 30, 252, 171, 247, 244, 73, 68, 154, 57, 81, 290, 86] k=19 Output:
[ "[166, 130, 208, 183, 220, 82, 231, 68, 49, 271, 190, 266, 263, 92, 87, 173, 76, 100, 309, 105]" ]
task1190-0a6ee74e0a7c4e7e95d2e31cd4bbdf00
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [104, 201, 288, 242, 111, 88, 55, 74, 151, 90, 236, 33, 230, 256, 118, 231, 155, 281, 198, 257] k=6 Output:
[ "[110, 207, 294, 248, 117, 94, 61, 80, 157, 96, 242, 39, 236, 262, 124, 237, 161, 287, 204, 263]" ]
task1190-c26e20b1e7fe452f9f848c23d632cef9
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [55, 165, 250, 197, 99, 65, 105, 290, 273, 289, 72, 253, 144, 53, 259, 70, 146, 48, 34, 85] k=6 Output:
[ "[61, 171, 256, 203, 105, 71, 111, 296, 279, 295, 78, 259, 150, 59, 265, 76, 152, 54, 40, 91]" ]
task1190-11b64df3bb534e599561cfe4e6c6d181
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [32, 295, 200, 176, 196, 180, 262, 177, 12, 193, 238, 228, 62, 158, 138, 40, 178, 255, 265, 128] k=14 Output:
[ "[46, 309, 214, 190, 210, 194, 276, 191, 26, 207, 252, 242, 76, 172, 152, 54, 192, 269, 279, 142]" ]
task1190-4612c8dd57a6438fb99909686c261ad0
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [50, 249, 92, 263, 133, 24, 136, 170, 109, 273, 51, 20, 84, 41, 283, 182, 253, 224, 65, 207] k=10 Output:
[ "[60, 259, 102, 273, 143, 34, 146, 180, 119, 283, 61, 30, 94, 51, 293, 192, 263, 234, 75, 217]" ]
task1190-25c2825fe00d46b199303433b230039a
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [188, 256, 198, 40, 53, 131, 148, 238, 149, 54, 273, 284, 17, 193, 134, 39, 290, 221, 99, 21] k=2 Output:
[ "[190, 258, 200, 42, 55, 133, 150, 240, 151, 56, 275, 286, 19, 195, 136, 41, 292, 223, 101, 23]" ]
task1190-b3e03fdf59094cde9e36e6597e2c5dd8
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [189, 76, 283, 47, 29, 169, 136, 32, 179, 218, 42, 103, 79, 15, 168, 11, 147, 213, 125, 247] k=5 Output:
[ "[194, 81, 288, 52, 34, 174, 141, 37, 184, 223, 47, 108, 84, 20, 173, 16, 152, 218, 130, 252]" ]
task1190-2788e4fa07f24480a8268e8dc0a2ae5e
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [126, 91, 288, 51, 296, 152, 181, 46, 282, 94, 200, 245, 95, 218, 216, 235, 92, 253, 27, 186] k=7 Output:
[ "[133, 98, 295, 58, 303, 159, 188, 53, 289, 101, 207, 252, 102, 225, 223, 242, 99, 260, 34, 193]" ]
task1190-b16e83056d294cf689f17620285e2bc7
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [280, 160, 91, 129, 111, 13, 217, 243, 147, 207, 132, 27, 10, 240, 221, 209, 42, 31, 173, 265] k=20 Output:
[ "[300, 180, 111, 149, 131, 33, 237, 263, 167, 227, 152, 47, 30, 260, 241, 229, 62, 51, 193, 285]" ]
task1190-8dd47e998b8a47518194b55fb4daf20f
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [100, 291, 199, 245, 247, 104, 162, 15, 99, 166, 56, 154, 152, 86, 219, 13, 132, 171, 124, 231] k=13 Output:
[ "[113, 304, 212, 258, 260, 117, 175, 28, 112, 179, 69, 167, 165, 99, 232, 26, 145, 184, 137, 244]" ]
task1190-57855a58b2d5439bb908fa684ac93630
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [212, 65, 203, 294, 247, 146, 25, 189, 107, 246, 273, 114, 126, 164, 92, 162, 165, 135, 71, 240] k=3 Output:
[ "[215, 68, 206, 297, 250, 149, 28, 192, 110, 249, 276, 117, 129, 167, 95, 165, 168, 138, 74, 243]" ]
task1190-9bb1a2c458fe41269d82e960704ca4a6
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [277, 142, 291, 92, 179, 52, 62, 31, 247, 14, 55, 231, 270, 200, 131, 221, 53, 28, 35, 279] k=1 Output:
[ "[278, 143, 292, 93, 180, 53, 63, 32, 248, 15, 56, 232, 271, 201, 132, 222, 54, 29, 36, 280]" ]
task1190-c03779d897e749008e189df9f43e69ba
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [227, 162, 173, 289, 292, 30, 184, 169, 68, 283, 139, 76, 153, 171, 278, 73, 157, 150, 273, 105] k=19 Output:
[ "[246, 181, 192, 308, 311, 49, 203, 188, 87, 302, 158, 95, 172, 190, 297, 92, 176, 169, 292, 124]" ]
task1190-66f8db023bce407bb708483c85f5656d
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [29, 143, 116, 205, 67, 151, 167, 233, 284, 203, 202, 12, 227, 128, 121, 88, 297, 294, 34, 95] k=20 Output:
[ "[49, 163, 136, 225, 87, 171, 187, 253, 304, 223, 222, 32, 247, 148, 141, 108, 317, 314, 54, 115]" ]
task1190-c6b89ba9a6b64ff9b257456f906113f5
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [38, 265, 21, 89, 36, 95, 60, 281, 261, 65, 279, 163, 125, 200, 269, 267, 263, 13, 31, 187] k=11 Output:
[ "[49, 276, 32, 100, 47, 106, 71, 292, 272, 76, 290, 174, 136, 211, 280, 278, 274, 24, 42, 198]" ]
task1190-fa73c37d9fe94329ab160d9103bf5039
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [242, 65, 12, 284, 227, 200, 289, 239, 84, 276, 180, 201, 114, 156, 197, 166, 266, 42, 271, 27] k=11 Output:
[ "[253, 76, 23, 295, 238, 211, 300, 250, 95, 287, 191, 212, 125, 167, 208, 177, 277, 53, 282, 38]" ]
task1190-bdcab89d38934438b98499e0fd769000
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [258, 154, 39, 66, 167, 190, 127, 189, 175, 203, 295, 290, 194, 237, 259, 31, 52, 33, 122, 277] k=13 Output:
[ "[271, 167, 52, 79, 180, 203, 140, 202, 188, 216, 308, 303, 207, 250, 272, 44, 65, 46, 135, 290]" ]
task1190-93b0b2ce53f24970b2353ba6e280d30a
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [289, 50, 168, 129, 103, 230, 240, 164, 203, 137, 59, 220, 186, 218, 274, 151, 244, 75, 277, 158] k=19 Output:
[ "[308, 69, 187, 148, 122, 249, 259, 183, 222, 156, 78, 239, 205, 237, 293, 170, 263, 94, 296, 177]" ]
task1190-a7100037efbc4a289500c067d2d15c0f
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [33, 266, 183, 174, 12, 182, 93, 190, 256, 164, 125, 285, 144, 29, 81, 193, 98, 165, 149, 185] k=12 Output:
[ "[45, 278, 195, 186, 24, 194, 105, 202, 268, 176, 137, 297, 156, 41, 93, 205, 110, 177, 161, 197]" ]
task1190-05de4625817248bfb103d945add322e8
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [129, 265, 282, 99, 168, 33, 210, 256, 260, 134, 187, 267, 268, 75, 228, 175, 275, 55, 123, 66] k=15 Output:
[ "[144, 280, 297, 114, 183, 48, 225, 271, 275, 149, 202, 282, 283, 90, 243, 190, 290, 70, 138, 81]" ]
task1190-c1d2d82ca037418b8ee634cb50d6a554
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [206, 116, 158, 203, 214, 279, 297, 168, 211, 137, 294, 170, 104, 218, 64, 213, 91, 172, 35, 220] k=19 Output:
[ "[225, 135, 177, 222, 233, 298, 316, 187, 230, 156, 313, 189, 123, 237, 83, 232, 110, 191, 54, 239]" ]
task1190-0c074ca8afca4945929c9632720f8e08
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [260, 42, 210, 144, 29, 129, 19, 149, 70, 15, 211, 170, 130, 104, 231, 81, 124, 158, 258, 82] k=12 Output:
[ "[272, 54, 222, 156, 41, 141, 31, 161, 82, 27, 223, 182, 142, 116, 243, 93, 136, 170, 270, 94]" ]
task1190-dfdf03de2fea4c1584e09fa4159c4341
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [135, 150, 278, 40, 157, 68, 264, 203, 285, 18, 194, 263, 75, 277, 37, 26, 188, 86, 137, 225] k=10 Output:
[ "[145, 160, 288, 50, 167, 78, 274, 213, 295, 28, 204, 273, 85, 287, 47, 36, 198, 96, 147, 235]" ]
task1190-37e99b1730984062b975904ec6275648
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [198, 48, 294, 167, 164, 192, 78, 224, 105, 100, 20, 111, 107, 38, 261, 298, 132, 99, 45, 23] k=11 Output:
[ "[209, 59, 305, 178, 175, 203, 89, 235, 116, 111, 31, 122, 118, 49, 272, 309, 143, 110, 56, 34]" ]
task1190-233afb0ad0be4e2b952e0c807f02026a
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [190, 270, 194, 165, 235, 126, 157, 272, 253, 102, 247, 91, 294, 213, 230, 105, 54, 20, 197, 88] k=16 Output:
[ "[206, 286, 210, 181, 251, 142, 173, 288, 269, 118, 263, 107, 310, 229, 246, 121, 70, 36, 213, 104]" ]
task1190-2694d8c0d7614e9b8d3c45c835f47ac0
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [86, 87, 153, 109, 189, 93, 202, 254, 117, 187, 67, 175, 227, 131, 179, 200, 277, 250, 234, 240] k=13 Output:
[ "[99, 100, 166, 122, 202, 106, 215, 267, 130, 200, 80, 188, 240, 144, 192, 213, 290, 263, 247, 253]" ]
task1190-3161a79f9a8040d08062bd5c23865e06
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [190, 15, 222, 127, 126, 237, 27, 179, 42, 79, 91, 114, 244, 213, 93, 200, 77, 28, 34, 175] k=4 Output:
[ "[194, 19, 226, 131, 130, 241, 31, 183, 46, 83, 95, 118, 248, 217, 97, 204, 81, 32, 38, 179]" ]
task1190-2153ef19047b49e7867d2b7eba473682
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [66, 181, 207, 297, 291, 267, 215, 165, 276, 200, 11, 154, 169, 36, 40, 74, 243, 46, 83, 14] k=6 Output:
[ "[72, 187, 213, 303, 297, 273, 221, 171, 282, 206, 17, 160, 175, 42, 46, 80, 249, 52, 89, 20]" ]
task1190-530640900cd74172bb6e4d43e57b58b7
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [35, 84, 116, 131, 118, 256, 250, 220, 277, 257, 262, 29, 33, 108, 215, 260, 67, 166, 134, 53] k=3 Output:
[ "[38, 87, 119, 134, 121, 259, 253, 223, 280, 260, 265, 32, 36, 111, 218, 263, 70, 169, 137, 56]" ]
task1190-b1558e914dfd45e5a71352fc2edb9f96
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [32, 210, 169, 297, 97, 87, 62, 109, 60, 177, 72, 197, 48, 89, 299, 142, 160, 228, 103, 82] k=18 Output:
[ "[50, 228, 187, 315, 115, 105, 80, 127, 78, 195, 90, 215, 66, 107, 317, 160, 178, 246, 121, 100]" ]
task1190-1ae9d21a3bdd437ea6ad8075bfd7335b
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [173, 299, 106, 121, 279, 39, 212, 267, 210, 131, 46, 47, 224, 122, 188, 149, 258, 79, 99, 257] k=8 Output:
[ "[181, 307, 114, 129, 287, 47, 220, 275, 218, 139, 54, 55, 232, 130, 196, 157, 266, 87, 107, 265]" ]
task1190-d625cdc36077462ab6bfec6a6fb5df16
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [206, 43, 17, 210, 32, 18, 105, 272, 95, 179, 151, 219, 185, 257, 159, 12, 46, 186, 195, 133] k=20 Output:
[ "[226, 63, 37, 230, 52, 38, 125, 292, 115, 199, 171, 239, 205, 277, 179, 32, 66, 206, 215, 153]" ]
task1190-056b87c3ed4e4445bf11122cb584e556
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [189, 221, 49, 282, 37, 212, 158, 157, 249, 206, 218, 57, 45, 275, 113, 148, 149, 280, 116, 137] k=20 Output:
[ "[209, 241, 69, 302, 57, 232, 178, 177, 269, 226, 238, 77, 65, 295, 133, 168, 169, 300, 136, 157]" ]
task1190-97863aa381324dd2b03e3538bd67cf8f
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [165, 60, 218, 167, 280, 77, 13, 43, 256, 269, 41, 128, 208, 112, 76, 292, 250, 31, 102, 16] k=1 Output:
[ "[166, 61, 219, 168, 281, 78, 14, 44, 257, 270, 42, 129, 209, 113, 77, 293, 251, 32, 103, 17]" ]
task1190-78b9013187334c3d90a9fbc21bef7031
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [223, 114, 183, 61, 277, 107, 173, 255, 153, 190, 254, 206, 159, 236, 203, 181, 182, 51, 291, 146] k=18 Output:
[ "[241, 132, 201, 79, 295, 125, 191, 273, 171, 208, 272, 224, 177, 254, 221, 199, 200, 69, 309, 164]" ]
task1190-1547989bb44545489dd8ffc97a0ab5d2
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [68, 130, 283, 35, 100, 150, 243, 192, 31, 178, 173, 25, 166, 45, 24, 235, 11, 18, 278, 240] k=12 Output:
[ "[80, 142, 295, 47, 112, 162, 255, 204, 43, 190, 185, 37, 178, 57, 36, 247, 23, 30, 290, 252]" ]
task1190-f0f58cd4006c44579abf01b1845daff0
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [221, 289, 140, 79, 110, 72, 149, 208, 296, 26, 161, 21, 94, 135, 199, 14, 253, 141, 185, 293] k=15 Output:
[ "[236, 304, 155, 94, 125, 87, 164, 223, 311, 41, 176, 36, 109, 150, 214, 29, 268, 156, 200, 308]" ]
task1190-caeb2c540cf84a17ba79d2dde8af6ed3
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [219, 103, 285, 254, 259, 247, 286, 61, 30, 223, 257, 11, 238, 269, 112, 101, 70, 136, 242, 281] k=10 Output:
[ "[229, 113, 295, 264, 269, 257, 296, 71, 40, 233, 267, 21, 248, 279, 122, 111, 80, 146, 252, 291]" ]
task1190-a40741b899134dfd8b58d61a9bef194c
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [105, 58, 51, 122, 98, 83, 246, 75, 26, 284, 146, 118, 250, 216, 44, 249, 92, 106, 28, 180] k=17 Output:
[ "[122, 75, 68, 139, 115, 100, 263, 92, 43, 301, 163, 135, 267, 233, 61, 266, 109, 123, 45, 197]" ]
task1190-5ef533e7c4e74b2eaaebde31cb3ce66f
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [94, 70, 253, 192, 24, 62, 95, 112, 182, 14, 256, 179, 171, 217, 245, 249, 141, 251, 92, 213] k=12 Output:
[ "[106, 82, 265, 204, 36, 74, 107, 124, 194, 26, 268, 191, 183, 229, 257, 261, 153, 263, 104, 225]" ]
task1190-0eb119cb2e3e4cedb1397a9b246e8dbe
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [137, 243, 228, 108, 269, 271, 140, 191, 147, 208, 145, 260, 36, 82, 223, 174, 107, 285, 272, 178] k=20 Output:
[ "[157, 263, 248, 128, 289, 291, 160, 211, 167, 228, 165, 280, 56, 102, 243, 194, 127, 305, 292, 198]" ]
task1190-f44c908bf4854d23abcbfc4077cb093d
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [110, 173, 217, 81, 198, 35, 280, 101, 181, 165, 45, 222, 57, 180, 55, 272, 277, 159, 121, 218] k=10 Output:
[ "[120, 183, 227, 91, 208, 45, 290, 111, 191, 175, 55, 232, 67, 190, 65, 282, 287, 169, 131, 228]" ]
task1190-d2c3c93882b243cc9d8cd35bf5e28d67
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [41, 214, 43, 16, 290, 69, 297, 191, 152, 104, 210, 81, 130, 174, 268, 31, 176, 161, 46, 36] k=20 Output:
[ "[61, 234, 63, 36, 310, 89, 317, 211, 172, 124, 230, 101, 150, 194, 288, 51, 196, 181, 66, 56]" ]
task1190-53334129f9604a6a915cc2515b46cd83
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [219, 132, 196, 35, 130, 48, 142, 205, 104, 92, 283, 185, 235, 160, 234, 182, 59, 32, 83, 206] k=15 Output:
[ "[234, 147, 211, 50, 145, 63, 157, 220, 119, 107, 298, 200, 250, 175, 249, 197, 74, 47, 98, 221]" ]
task1190-7f757ae53d124a9896e0b6bf2116fecc
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [191, 228, 224, 66, 280, 24, 266, 56, 151, 223, 106, 256, 156, 109, 291, 197, 86, 126, 26, 87] k=13 Output:
[ "[204, 241, 237, 79, 293, 37, 279, 69, 164, 236, 119, 269, 169, 122, 304, 210, 99, 139, 39, 100]" ]
task1190-dd30dc7e48fe48678523420b6c5991d4
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [133, 214, 218, 292, 134, 58, 199, 159, 207, 293, 211, 276, 154, 139, 127, 143, 70, 274, 232, 142] k=13 Output:
[ "[146, 227, 231, 305, 147, 71, 212, 172, 220, 306, 224, 289, 167, 152, 140, 156, 83, 287, 245, 155]" ]
task1190-04782d19c1e84080b83ead28e9f12d84
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [13, 73, 290, 229, 231, 227, 248, 264, 260, 146, 203, 52, 293, 130, 168, 282, 105, 60, 70, 112] k=17 Output:
[ "[30, 90, 307, 246, 248, 244, 265, 281, 277, 163, 220, 69, 310, 147, 185, 299, 122, 77, 87, 129]" ]
task1190-3a815c7ed5c54c11b9f886d0b01a7b62
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [23, 190, 61, 247, 215, 140, 59, 80, 265, 120, 28, 98, 131, 198, 104, 151, 76, 158, 139, 22] k=17 Output:
[ "[40, 207, 78, 264, 232, 157, 76, 97, 282, 137, 45, 115, 148, 215, 121, 168, 93, 175, 156, 39]" ]
task1190-d5b74b360f2e4d5bbe4caf977ef68355
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [38, 123, 214, 254, 84, 25, 150, 28, 240, 185, 63, 179, 288, 217, 57, 92, 244, 204, 70, 155] k=6 Output:
[ "[44, 129, 220, 260, 90, 31, 156, 34, 246, 191, 69, 185, 294, 223, 63, 98, 250, 210, 76, 161]" ]
task1190-5535ffbcd9b54351bf84745fdbd70c53
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [180, 227, 163, 230, 213, 61, 294, 165, 290, 154, 58, 238, 146, 15, 253, 28, 194, 265, 257, 97] k=10 Output:
[ "[190, 237, 173, 240, 223, 71, 304, 175, 300, 164, 68, 248, 156, 25, 263, 38, 204, 275, 267, 107]" ]
task1190-833b00af694e4d61a2ff77d1471adb84
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [211, 155, 266, 85, 192, 221, 249, 198, 275, 205, 195, 185, 91, 280, 232, 87, 124, 271, 75, 55] k=16 Output:
[ "[227, 171, 282, 101, 208, 237, 265, 214, 291, 221, 211, 201, 107, 296, 248, 103, 140, 287, 91, 71]" ]
task1190-7eb30487044c4f9a993231b3231feb09
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [51, 26, 251, 85, 107, 105, 137, 145, 80, 191, 278, 224, 15, 66, 232, 132, 59, 68, 296, 263] k=9 Output:
[ "[60, 35, 260, 94, 116, 114, 146, 154, 89, 200, 287, 233, 24, 75, 241, 141, 68, 77, 305, 272]" ]
task1190-2a16db05f63345339dc9ec51e6b2cf62
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [159, 223, 125, 284, 207, 173, 224, 10, 17, 127, 16, 47, 107, 41, 90, 253, 236, 222, 80, 278] k=5 Output:
[ "[164, 228, 130, 289, 212, 178, 229, 15, 22, 132, 21, 52, 112, 46, 95, 258, 241, 227, 85, 283]" ]
task1190-99dc203306dd417da920971aad49a217
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [80, 161, 73, 12, 17, 277, 295, 49, 175, 241, 230, 31, 22, 40, 28, 101, 84, 289, 149, 55] k=17 Output:
[ "[97, 178, 90, 29, 34, 294, 312, 66, 192, 258, 247, 48, 39, 57, 45, 118, 101, 306, 166, 72]" ]
task1190-5db00f84d3204f33a48f00e5c5b112bd
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [28, 214, 159, 148, 79, 254, 240, 203, 25, 276, 125, 155, 167, 76, 257, 67, 209, 123, 121, 30] k=14 Output:
[ "[42, 228, 173, 162, 93, 268, 254, 217, 39, 290, 139, 169, 181, 90, 271, 81, 223, 137, 135, 44]" ]
task1190-2e78ad4949e24044a6d7eec84dee59b3
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [246, 90, 46, 74, 194, 48, 197, 177, 162, 134, 273, 139, 282, 138, 77, 212, 215, 65, 173, 53] k=4 Output:
[ "[250, 94, 50, 78, 198, 52, 201, 181, 166, 138, 277, 143, 286, 142, 81, 216, 219, 69, 177, 57]" ]
task1190-96233467085141308e10cc2eaa835cdb
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [200, 134, 102, 178, 223, 53, 229, 291, 121, 117, 212, 232, 122, 175, 248, 271, 207, 201, 224, 234] k=17 Output:
[ "[217, 151, 119, 195, 240, 70, 246, 308, 138, 134, 229, 249, 139, 192, 265, 288, 224, 218, 241, 251]" ]
task1190-1b641abf1ccd4c518d68f408e0228998
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [144, 124, 279, 293, 41, 32, 77, 239, 71, 210, 297, 251, 141, 199, 206, 229, 42, 64, 253, 30] k=8 Output:
[ "[152, 132, 287, 301, 49, 40, 85, 247, 79, 218, 305, 259, 149, 207, 214, 237, 50, 72, 261, 38]" ]
task1190-829aadad04a446dc8eea4b2c92a95cdc
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [190, 92, 140, 185, 205, 101, 288, 80, 191, 192, 90, 143, 253, 207, 213, 297, 124, 211, 203, 74] k=20 Output:
[ "[210, 112, 160, 205, 225, 121, 308, 100, 211, 212, 110, 163, 273, 227, 233, 317, 144, 231, 223, 94]" ]
task1190-81a20eec47c44d8f9bf46ed0d7fb7701
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [91, 147, 100, 88, 146, 102, 261, 169, 295, 111, 224, 241, 259, 47, 239, 240, 29, 77, 107, 87] k=10 Output:
[ "[101, 157, 110, 98, 156, 112, 271, 179, 305, 121, 234, 251, 269, 57, 249, 250, 39, 87, 117, 97]" ]
task1190-c97679ac47ef4b1aa700e2038d317e05
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [36, 262, 222, 188, 224, 185, 126, 102, 237, 282, 159, 107, 51, 89, 169, 290, 58, 153, 120, 48] k=14 Output:
[ "[50, 276, 236, 202, 238, 199, 140, 116, 251, 296, 173, 121, 65, 103, 183, 304, 72, 167, 134, 62]" ]
task1190-03158b1b3c324da5b6ff1da39843c0f4
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [233, 71, 95, 76, 205, 62, 130, 298, 288, 141, 203, 46, 30, 178, 186, 45, 282, 238, 162, 108] k=5 Output:
[ "[238, 76, 100, 81, 210, 67, 135, 303, 293, 146, 208, 51, 35, 183, 191, 50, 287, 243, 167, 113]" ]
task1190-828e3ea6c8f344ab83e15c57e39db354
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [241, 81, 65, 116, 251, 296, 130, 90, 213, 217, 269, 142, 220, 109, 132, 231, 291, 153, 216, 243] k=1 Output:
[ "[242, 82, 66, 117, 252, 297, 131, 91, 214, 218, 270, 143, 221, 110, 133, 232, 292, 154, 217, 244]" ]
task1190-d48c8db03be7430f9d9339201f1703b1
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [167, 138, 35, 205, 150, 64, 181, 67, 277, 195, 219, 72, 24, 293, 254, 61, 234, 289, 25, 100] k=18 Output:
[ "[185, 156, 53, 223, 168, 82, 199, 85, 295, 213, 237, 90, 42, 311, 272, 79, 252, 307, 43, 118]" ]
task1190-76eab5374b914303a99aad29ee7ea72b
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [226, 104, 47, 270, 264, 24, 213, 196, 188, 259, 185, 88, 140, 169, 290, 21, 206, 118, 231, 240] k=10 Output:
[ "[236, 114, 57, 280, 274, 34, 223, 206, 198, 269, 195, 98, 150, 179, 300, 31, 216, 128, 241, 250]" ]
task1190-f07e4c94c2a744cda0d358fca7c1cedb
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [126, 76, 184, 156, 120, 203, 269, 216, 51, 298, 254, 226, 130, 21, 28, 71, 240, 153, 123, 47] k=1 Output:
[ "[127, 77, 185, 157, 121, 204, 270, 217, 52, 299, 255, 227, 131, 22, 29, 72, 241, 154, 124, 48]" ]
task1190-eea87cc6656c499ea02546d19ab0a126
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [167, 251, 64, 149, 115, 117, 38, 61, 189, 252, 105, 122, 261, 98, 94, 139, 121, 29, 185, 140] k=10 Output:
[ "[177, 261, 74, 159, 125, 127, 48, 71, 199, 262, 115, 132, 271, 108, 104, 149, 131, 39, 195, 150]" ]
task1190-f80a009036864c428ab52c4d76029f87
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [253, 65, 204, 258, 103, 280, 137, 52, 281, 23, 285, 212, 186, 22, 230, 128, 248, 147, 20, 172] k=14 Output:
[ "[267, 79, 218, 272, 117, 294, 151, 66, 295, 37, 299, 226, 200, 36, 244, 142, 262, 161, 34, 186]" ]
task1190-87caf9be3a53485c8d7bb1b4d3e4fa99
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [124, 13, 42, 171, 114, 219, 90, 149, 110, 76, 10, 147, 148, 158, 176, 61, 207, 161, 107, 88] k=14 Output:
[ "[138, 27, 56, 185, 128, 233, 104, 163, 124, 90, 24, 161, 162, 172, 190, 75, 221, 175, 121, 102]" ]
task1190-0b3d8673fe4946b2970578efe3736240
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [27, 275, 82, 76, 169, 186, 209, 68, 20, 183, 295, 256, 111, 223, 181, 155, 288, 28, 113, 205] k=10 Output:
[ "[37, 285, 92, 86, 179, 196, 219, 78, 30, 193, 305, 266, 121, 233, 191, 165, 298, 38, 123, 215]" ]
task1190-cfbcd3d1c56d4f38b14f9318af8f7864
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [184, 139, 147, 157, 219, 259, 28, 225, 297, 82, 233, 187, 264, 281, 215, 250, 134, 190, 235, 26] k=20 Output:
[ "[204, 159, 167, 177, 239, 279, 48, 245, 317, 102, 253, 207, 284, 301, 235, 270, 154, 210, 255, 46]" ]
task1190-ce1f0c98a0764b2ca5aa93b4973b1185
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [182, 122, 66, 13, 45, 112, 275, 229, 206, 257, 255, 183, 10, 137, 208, 270, 126, 134, 103, 17] k=5 Output:
[ "[187, 127, 71, 18, 50, 117, 280, 234, 211, 262, 260, 188, 15, 142, 213, 275, 131, 139, 108, 22]" ]
task1190-7367f093c7e04fe097cfdc22ed6857e6
Definition: In this task, you are given a list of integers and an integer k. You need to add integer k to each element in the list and return the updated list. Positive Example 1 - Input: [100, 291, 285, 281, 151, 189, 220, 235, 288, 160, 233, 198, 294, 269, 162, 152, 217, 247, 98, 145] k=14 Output: [114, 305, 299, 295, 165, 203, 234, 249, 302, 174, 247, 212, 308, 283, 176, 166, 231, 261, 112, 159] Positive Example 2 - Input: [11, 153, 59, 44, 176, 35, 29, 241, 197, 128, 82, 293, 186, 52, 97, 54, 80, 230, 30, 238] k=19 Output: [30, 172, 78, 63, 195, 54, 48, 260, 216, 147, 101, 312, 205, 71, 116, 73, 99, 249, 49, 257] Negative Example 1 - Input: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] k=19 Output: [24, 253, 288, 205, 119, 61, 243, 48, 218, 299, 63, 74, 127, 203, 29, 151, 196, 81, 244, 233] Negative Example 2 - Input: [154, 151, 268, 86, 192, 108, 170, 204, 163, 109, 142, 107, 240, 203, 77, 249, 45, 141, 28, 18] k=16 Output: [154, 167, 284, 102, 192, 124, 186, 220, 245, 125, 158, 123, 347, 219, 93, 265, 68, 157, 44, 34] Now complete the following example - Input: [266, 195, 219, 253, 97, 116, 180, 229, 34, 142, 173, 12, 182, 127, 150, 45, 245, 167, 177, 151] k=7 Output:
[ "[273, 202, 226, 260, 104, 123, 187, 236, 41, 149, 180, 19, 189, 134, 157, 52, 252, 174, 184, 158]" ]
task1190-80c0f4e3cb5e47a7af0dcf18d7fa76bb