input
stringlengths
943
1.01k
output
sequencelengths
1
1
id
stringlengths
40
40
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 50.573 -19.542 -79.501 -25.42 -9.399] Output:
[ "-79.501" ]
task095-9d851c67b76044edaa4b5552095d9545
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-29.475 -82.475 -73.953 -73.011 11. ] Output:
[ "-82.475" ]
task095-709f6e74c0c742f181a27d98313ecf67
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-25.809 31.303 35.383 -44.141] Output:
[ "-44.141" ]
task095-1a3aaab680694cf580eab52d704126a0
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-95.983 79.698 -96.987 -70.553 -92.115 56.823] Output:
[ "-96.987" ]
task095-c9fddc2e80744995ac77bf3ec9ee6aeb
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 57.366 -87.337 51.147 97.351 53.484 -47.78 ] Output:
[ "97.351" ]
task095-651483ba84404805b629c41d79ca361a
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 29.967 46.451 -43.78 75.432 -16.582 72.501] Output:
[ "75.432" ]
task095-8c548566efb544e0a170e52daaacae39
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-87.064 -10.869 -13.646] Output:
[ "-87.064" ]
task095-2c08243b0c934f88a9562a8599e2ea64
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-41.638 -25.35 98.385 80.742 -93.602 -32.174 14.152 -9.411 -33.939] Output:
[ "98.385" ]
task095-2a709528441249f4ab97b46362fc0c9e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-45.931 -60.711 81.204 -3.805 88.479 63.667 8.261] Output:
[ "88.479" ]
task095-8c325aae32b74839b119e4a58d551d9e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 18.022 -25.097 95.866 41.07 -5.05 13.157 -13.313 -50.233 97.276] Output:
[ "97.276" ]
task095-4c6a2b989dff4c07b312308c2c1a14d7
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-77.813 72.01 32.415] Output:
[ "-77.813" ]
task095-8a3fe0cbd11e41dcba8586629678953f
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-22.53 91.096 65.37 -61.226 -58.165] Output:
[ "91.096" ]
task095-1f19a34230c542dd8f239b2cc16020a4
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [78.763 7.214 -1.494 64.086 92.482] Output:
[ "92.482" ]
task095-8de0e1ff113740e69989358bb128f449
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-10.595 21.585 -11.09 ] Output:
[ "21.585" ]
task095-b05faa375a9f49c5aff685ea38dbc7bb
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-40.449 -26.283 -72.059 -54.903 -50.671 -68.763 -45.518 -12.603 20.255 80.89 ] Output:
[ "80.89" ]
task095-b0b7443d7cdb4031896da4e5cd71bb2e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-61.566 -34.283 77.606 -98.694] Output:
[ "-98.694" ]
task095-f51aa93b8fe04226a7bde2cede9d8f3e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 38.977 -16.663 0.808 98.106] Output:
[ "98.106" ]
task095-b8e221b2b1744199be3186bb103e3ae1
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 64. -43.766 -57.515 36.9 -60.195 -92.813 62.268 -20.667 70.298] Output:
[ "-92.813" ]
task095-b30f1bd7217b4cb5880012a63c8a0c45
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 81.083 63.874 -47.051 -67.747 -76.066 94.902 -96.375 56.08 -3.589] Output:
[ "-96.375" ]
task095-439bc6c2e2794c47a15e4eaf2838c313
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 68.486 -35.944 10.847 -42.637 46.736 -56.756 -2.303 -73.535 33.903 28.295] Output:
[ "-73.535" ]
task095-00ced5fb307746af9fab14cfbd969eeb
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 77.053 75.014 57.163 96.337 -21.056 -86.416 45.026 -54.594 74.67 17.535] Output:
[ "96.337" ]
task095-17a855dace6444f6b070ac35e204939d
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-39.328 39.644 67.854 -18.258 25.685 17.401 -45.868 -47.717 -48.812] Output:
[ "67.854" ]
task095-32f2f7d89ac249cfa63ccebab0bd0c28
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 87.056 -96.969 44.325 68.703 -91.352 26.337] Output:
[ "-96.969" ]
task095-caad375ec6b2454293aa3f11fc0967e1
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 12.778 -8.803 -79.8 64.164 -75.936] Output:
[ "-79.8" ]
task095-9d03438b94a3448a9243c5d1c20bdecd
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 23.028 89.498 -24.386 -1.275 29.559] Output:
[ "89.498" ]
task095-9ce02ab1f34948f88b2145c5830f3aa5
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-74.397 -30.591 30.124 -84.287] Output:
[ "-84.287" ]
task095-98071340e1264b51b27e6177ea4e6080
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-25.385 50.798 -44.366 98.449 -26.679 93.641 61.556 60.172] Output:
[ "98.449" ]
task095-8607fd207b8c4b6b9226b5dd4195ea27
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 68.471 -70.743] Output:
[ "-70.743" ]
task095-fb2d620f1f4a4fa681785ef0dc922e7c
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [81.296 70.806 61.718] Output:
[ "81.296" ]
task095-3ff80c6d8c584e7d8df3293e344db71e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-73.724 28.701 -0.836] Output:
[ "-73.724" ]
task095-a014819063ae4dffba0ca1e41765be61
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [22.451 53.944 95.403] Output:
[ "95.403" ]
task095-010f45c10e1740ce9767e3099b083f86
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 1.49 -69.458 25.241] Output:
[ "-69.458" ]
task095-7072ee5c3a1542dd99426388c5a5dba0
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-51.325 -99.158 23.893 -82.465 19.194 -77.278 -8.35 ] Output:
[ "-99.158" ]
task095-389ce01f7f804421b041b83b66a6ad82
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 86.788 89.311 -43.152 -94.167 -18.09 87.506 19.19 ] Output:
[ "-94.167" ]
task095-bdc2db3be9d44c29a30a87fdf9cf9171
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 91.468 90.932 -49.618 -29.548 18.551 12.829 -48.002 91.254 -47.685 -30.215] Output:
[ "91.468" ]
task095-b89178c2568642468c0871794d2771af
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 77.04 -71.519 60.353 -41.295 86.194 -19.382] Output:
[ "86.194" ]
task095-84d98010f4564e81a6ca94ee54c1d250
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-40.514 62.852 91.633 7.241 1.347] Output:
[ "91.633" ]
task095-d1b62aafbd1e421cbfc40bc01cfd0d3c
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 93.976 81.047 -92.551 -33.639 40.534 87.23 99.182 -6.73 -34.329 57.779] Output:
[ "99.182" ]
task095-916a8e61a5d84a01a19886722c86a8c5
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 12.287 -47.19 -29.69 -39.008] Output:
[ "-47.19" ]
task095-39bc1835ccd24646b82c9af07636f2ed
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 16.253 47.191 -18.518 62.674 11.964 92.415 24.615 62.341] Output:
[ "92.415" ]
task095-d913eb6651a54a0585458135924d2196
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-29.284 -38.809 -64.328 -88.521 -52.897] Output:
[ "-88.521" ]
task095-22f371072f6e4e86adceaf2671c7e7c9
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-40.01 -73.22 5.213 -1.59 52.736 40.957 47.453] Output:
[ "-73.22" ]
task095-1a146a67b8d54253bae70292b20612e1
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 41.966 -20.193 30.702] Output:
[ "41.966" ]
task095-7f80b7f8d31642448ac1a0c528eaf17c
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-44.866 27.709 97.85 ] Output:
[ "97.85" ]
task095-adde381122b34e328affb2ae6ffa374b
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 16.82 -43.235 -83.474 -4.783 -28.359 -94.991 91.228 -87.069 84.508 -96.358] Output:
[ "-96.358" ]
task095-0376fc8d50b34a22bfccf79fcf5bf004
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 14.517 -85.307 38.12 -76.227] Output:
[ "-85.307" ]
task095-1bd3594b904d40148947ae8277451ac9
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-54.042 -17.976 2.985 85.649 -58.187 47.546] Output:
[ "85.649" ]
task095-02797c9841574946aeccd5242d19a30c
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-91.131 -26.872 53.896 60.459 -86.174 -30.367 -15.054 -67.856] Output:
[ "-91.131" ]
task095-374ce3ae5a7f4273834ad4461769bb35
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-45.892 -92.73 92.713 3.836 28.386 96. -18.498 77.708 64.66 ] Output:
[ "96.0" ]
task095-633fd436f8e74ce3a91d633b8c420c52
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [78.643 56.699 82.544 9.518 13.016 59.716] Output:
[ "82.544" ]
task095-8e664b15d5db43ab81f09b79e831d005
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 46.325 -86.085 18.891] Output:
[ "-86.085" ]
task095-49968a0211c24c5086b8f0f8bf42a0d2
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-68.653 50.865 14.951 -72.447 70.005 -40.574] Output:
[ "-72.447" ]
task095-2c433ecacb294dd19d33a72b95a73e2d
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-51.258 80.531 -16.192 -3.486 1.162 -68.448 -58.123] Output:
[ "80.531" ]
task095-9e94d203c0084268a43a1c1dca2d8e2d
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-19.991 -73.211 -51.247 25.242 98.648 -51.116 39.705 25.125 -81.838 -51.627] Output:
[ "98.648" ]
task095-824a239ac73e4e488d9002640a288ecb
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 1.434 94.275 81.937 -44.332] Output:
[ "94.275" ]
task095-25d67a8cffdf446b9d57864ae8e42514
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-87.163 -39.573 79.643 -97.584 -76.784] Output:
[ "-97.584" ]
task095-14193dcbc65c454ea8687182b34d0b7e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-76.024 -29.584 -83.909 54.004 22.027 31.962] Output:
[ "-83.909" ]
task095-23d1182355624b18b32e67edabeca48d
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 43.687 -88.238 -49.347 18.757 -1.236 -84.191 -98.329 -4.213 71.042 3.132] Output:
[ "-98.329" ]
task095-64e3dd2f9fbb41daae28faa105bda755
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ -2.068 -86.291 70.814 -22.488 97.061 -89.099 24.156] Output:
[ "97.061" ]
task095-cc37dff1ccc342939d0151571e578710
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 28.685 -33.142] Output:
[ "-33.142" ]
task095-47e033ee48d14158a5b801c77af0416e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 8.39 -48.643 -14.242 64.353] Output:
[ "64.353" ]
task095-ef20437a0f694535842c56fc09491c23
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 92.57 15.622 0.098 53.725 -75.151] Output:
[ "92.57" ]
task095-0e57249aa18f4cbb92dceedaf13f45e2
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 0.385 48.079 47.058 70.594 6.039 -8.536 68.801 -80.337] Output:
[ "-80.337" ]
task095-9c3d20d040024315bb3ee89b6a93710a
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 60.569 6.198 -27.624] Output:
[ "60.569" ]
task095-85c0cf2a467845049f35ce9e7baa1aad
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 90.075 -75.699 70.815 32.24 7.056 -65.001 68.297 -71.798 95.892] Output:
[ "95.892" ]
task095-d4ed557bb1bd43168e3787e1b8f00f3e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-62.762 19.116] Output:
[ "-62.762" ]
task095-307a6644e49446c3b2833ffd8e5e9683
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-62.558 -28.168 83.96 40.573 -28.936 -24.652 49.671 12.328] Output:
[ "83.96" ]
task095-11bcb1c6b2e348f999d588c33befd4e6
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-69.958 63.655 -51.431 -4.857 36.291 -8.376] Output:
[ "-69.958" ]
task095-07a8fe1d91964a8881cdc1160c0bfe09
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 12.386 46.213 -50.15 20.155] Output:
[ "-50.15" ]
task095-482e9ac879f24f66a928debd87ae9e0f
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-66.839 -71.783 20.289] Output:
[ "-71.783" ]
task095-1940f72b1d384c348001bc7cf7752013
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 12.364 75.328 -32.75 -94.413 -76.785 -35.737] Output:
[ "-94.413" ]
task095-c94eb04911de40dcbaa8bcf891f09aa6
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 42.413 12.62 66.307 43.597 77.274 85.69 99.06 -70.381 51.975 -55.845] Output:
[ "99.06" ]
task095-2a8043add4664e81bddca9ce64d51339
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ -7.843 -39.248 -64.487 55.846 -47.231 -38.72 70.894 -63.76 71.352 52.435] Output:
[ "71.352" ]
task095-de02b88f2e7c49a880c84c8463839699
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [53.012 69.498 86.041 49.968 16.178] Output:
[ "86.041" ]
task095-88f77de660004b2d9f903f1d9e6d1706
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [38.218 52.855 24.52 71.493] Output:
[ "71.493" ]
task095-f1010c8fdc8a4d52adf9cafbf19cff84
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-22.283 -94.364 -14.949 -61.362 -99.764 47.173 -98.39 ] Output:
[ "-99.764" ]
task095-b9994bbad3d04df48a89b17f43577f22
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-92.705 89.305 85.194 29.425] Output:
[ "-92.705" ]
task095-ddc0e380066b4c118377bd9d5fff12d7
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-24.752 85.962 22.18 39.039] Output:
[ "85.962" ]
task095-147b129cfebd4efd9e6e8bd4d1fee66b
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 58.095 -28.399 -74.512 91.879 29.52 11.417 26.137 -44.309] Output:
[ "91.879" ]
task095-33353e2a21c24fddae301066d4f71fb9
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 48.064 -14.477] Output:
[ "48.064" ]
task095-3104d777b2fd4b85a6f75277c075afad
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-12.803 -24.368 -63.563 -62.711 42.64 -95.829] Output:
[ "-95.829" ]
task095-8012a78be0804ab284e0859e9171c2ec
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 82.342 -45.204 93.392] Output:
[ "93.392" ]
task095-a6c8a4a9ca1249c98381a99494fa18ff
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-63.828 -18.324 -68.332] Output:
[ "-68.332" ]
task095-64e39ff853a84949b7c45df5166a6f57
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 59.624 29.474 -82.872 80.51 ] Output:
[ "-82.872" ]
task095-8f2c1a4fd9fe46deb6df7afdc016539a
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-42.49 42.29 84.716] Output:
[ "84.716" ]
task095-85335211150a4fb1a51427bca14e90eb
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-42.839 -31.361 69.849 -3.598 28.2 62.079 9.214 -55.137 66.645] Output:
[ "69.849" ]
task095-ea3ec9148e8b496db4e1bea23974ec13
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ -2.312 -16.773 -72.665 69.123 95.247 69.451] Output:
[ "95.247" ]
task095-2d588a80cc4f47f79029321bc6d07d5a
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-98.115 -58.845 -99.127 -16.202 97.374] Output:
[ "-99.127" ]
task095-c9da4d7e1aa0426ebb4e7e03a4d0e87d
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 7.54 66.029 -65.405 86.11 -60.76 ] Output:
[ "86.11" ]
task095-8a772aa6db5c479188af91d2fb2e078e
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 72.426 -71.421 60.207] Output:
[ "72.426" ]
task095-fd4c9ea672664c21879ad38d83ec45ec
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-53.539 -96.772 -71.815] Output:
[ "-96.772" ]
task095-2923fb4d78e44cf7b569bea7393ecc0b
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-49.712 4.996 98.477] Output:
[ "98.477" ]
task095-edde69d5a0a1481ba7ce7d883b023754
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-39.832 -53.738 11.671 12.848] Output:
[ "-53.738" ]
task095-61a9088d02264229875905dbe20a9c84
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 77.876 -73.713 31.625] Output:
[ "77.876" ]
task095-6288896f3e0f4d18bde1e4c1034720bb
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [97.998 62.356] Output:
[ "97.998" ]
task095-73377b8ad6f4442e9ef6bf3e753dc8f0
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-70.286 92.099 93.671 70.291] Output:
[ "93.671" ]
task095-f2fd1a9a75e64d01be36a0456835fbac
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 9.8 76.665 -18.7 -31.608 -59.913 14.485 48.029 -46.683] Output:
[ "76.665" ]
task095-e4202cfb41624de794c2033c191056aa
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 64.754 -85.244 83.212 79.449 -35.766] Output:
[ "-85.244" ]
task095-df730332861349c2ab70067682517ddc
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 37.362 45.72 -80.092 -22.21 50.858 -86.816 70.797 -6.988 65.373 -19.715] Output:
[ "-86.816" ]
task095-fa1e1c569fff4cebaa2ec4f07a018144
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 24.059 49.248 78.976 -35.897 -86.1 -59.745] Output:
[ "-86.1" ]
task095-dfae76475aa446f09a018decdbeb66da