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: [-13.887 54.164 63.864 54.951 -15.801 57.821 74.371 17.42 -42.28 ] Output:
[ "74.371" ]
task095-10d53df6d885413282e4dc777a669b91
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.384 -91.142 -40.242 -54.482 69.761 67.848 74.888 -48.437 -79.967 48.413] Output:
[ "-91.142" ]
task095-b253ba8c6fbd4b3995263084574f03a3
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.591 -20.454 -93.265 54.308] Output:
[ "-93.265" ]
task095-782d968abf5042ff999594f41b2c91d6
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.419 -29.173 2.453] Output:
[ "-97.419" ]
task095-1069888e65d549adb9a988cb02dae67a
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.087 -11.302 -90.703] Output:
[ "-90.703" ]
task095-39a2798953bd410a9780f7aea1942042
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: [ 15.615 3.068 -96.037 -61.137 58.809 -87.118 -19.28 49.087 -82.096] Output:
[ "-96.037" ]
task095-8655406694de40688bbb05f9897e4250
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.612 -25.578 -73.77 -79.865 73.536 56. 15.738 68.426 -44.59 ] Output:
[ "-79.865" ]
task095-3f44c611447d4fdc8e31e3a87223df7f
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.646 -57.558 -54.463 50.493 -71.519 59.257 4.45 -0.84 ] Output:
[ "81.646" ]
task095-ef279526732642a6ae8a2db00d7270cc
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.404 43.1 19.224 -99.974 -36.041 -76.063 42.602 17.889 52.95 89.618] Output:
[ "-99.974" ]
task095-a522036be35942a391dc9257d7133c72
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.27 16.087 56.522 -66.96 -74.157 69.872 -39.245 -57.204 -83.256 67.644] Output:
[ "-95.27" ]
task095-2650a4d475174752ab94762df27dbd0a
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: [ 89.783 79.484 -65.918 35.8 14.823 67.23 56.849 82.611] Output:
[ "89.783" ]
task095-26c162a15b9649b1b2815a7bc3f84f26
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.364 -74.523 90.651 -79.942 18.451 57.977] Output:
[ "90.651" ]
task095-958f0d5fd57847c695b64392f039f2d8
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.261 29.817 -86.785 22.837] Output:
[ "-93.261" ]
task095-8baf22ced4a340a09f5fdc304bfd2731
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: [ 94.948 96.26 -2.825 -10.867 -29.487 -66.586 -85.231] Output:
[ "96.26" ]
task095-cad4fb7ced134d59acb723059c2b7b7f
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: [-84.411 57.765 -30.138 63.684 -18.747 -71.293 98.58 -46.857 81.232 -51.033] Output:
[ "98.58" ]
task095-fd9f1dbfe83e45e790381e392ed0c179
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.331 83.993 21.108 -63.727 -84.112 -60.984 79.797 55.643 -1.26 ] Output:
[ "-84.112" ]
task095-a2aa5ce7f3334c00b2135f1b8013280e
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: [-27.427 19.23 ] Output:
[ "-27.427" ]
task095-8102397c7e9248a0963887614c3ff21a
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: [-34.017 76.24 -93.653] Output:
[ "-93.653" ]
task095-fa0f7c45e4c54dc5978b79a9d15eaee2
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.544 7.621 26.035 -50.254 94.024 -86.931 96.427 -15.701 -34.744] Output:
[ "96.427" ]
task095-7cf180dcafa94dec9347a8f0287f02e8
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: [ 88.631 59.938 -12.341 38.466 -42.103 98.763 -72.15 69.705 -48.993] Output:
[ "98.763" ]
task095-2f560a08bc704ea599d25420ed9a5e37
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.415 -64.544 77.194] Output:
[ "77.194" ]
task095-e9f5f46754de47f894b4a30649732f1b
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: [ 6.719 17.039 -1.929 -27.875] Output:
[ "-27.875" ]
task095-e6622eb9a9474aa495f465ba65eb9721
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: [ 17.912 55.726 -58.046 -68.117 -44.057 73.459 -16.941] Output:
[ "73.459" ]
task095-e635f6ba21aa4bb9831f27482aef3004
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.75 -38.771 -63.912 -62.211 56.635 -45.383 -33.191 68.631 79.417 -41.681] Output:
[ "79.417" ]
task095-27376618108f495093446772017cde2a
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.946 -65.877] Output:
[ "97.946" ]
task095-7168e0c93f094ac4856294324444cb10
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.348 -10.368 23.042] Output:
[ "54.348" ]
task095-bb3d84722cde4787bbd3e89d2cbd9280
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: [-99.109 99.571 26.491 59.549 79.864 -37.816 26.836 49.757 -64.528] Output:
[ "99.571" ]
task095-e79ee28b3eab47d2afa3f416a1e13392
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.99 31.367 -26.457] Output:
[ "31.367" ]
task095-cf0605bae3ad446589cdc30244001b3b
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: [-17.044 28.934 85.992 26.168 20.014 45.259 40.101 -43.837 23.158] Output:
[ "85.992" ]
task095-0d297a7a69914d1482b843a38a9caa11
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.123 44.118 -19.073 -35.492 -68.687] Output:
[ "-86.123" ]
task095-6c9bc05f0df04faaa1b17a23812f153d
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.531 -47.021 -69.201 -55.61 2.641] Output:
[ "-69.201" ]
task095-b17dbdcdf7b14e21a6bef9bd558a724a
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: [ 89.883 27.169 -58.278 -62.662 -57.756 5.01 -95.775 -80.651 24.811 23.296] Output:
[ "-95.775" ]
task095-5ad2b6d068e74c20a8b05e2a3622646c
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.935 -63.507 74.032 -86.127 -46.532 -88.159 -72.143 39.481 -28.608] Output:
[ "-88.159" ]
task095-a11b27e901bb4466925aa44d118fbd53
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: [-31.429 -5.075 97.105 54.021 -38.611 -89.748 95.322 -50.454] Output:
[ "97.105" ]
task095-995d8a79882c482791d4dd17dd78fae8
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: [ -6.525 61.31 23.294 51.876 -99.637 -0.227 79.695 -15.846] Output:
[ "-99.637" ]
task095-e2ad1ecc33954a31a73b18ed005f963b
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.34 0.243] Output:
[ "53.34" ]
task095-12952c2ff3394199bb423ec834c4a433
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.47 63.992 77.993 -25.42 38.168 -48.146 -61.732] Output:
[ "92.47" ]
task095-ab3e6e11f90e4487a4346a42f8137b21
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: [30.648 79.562] Output:
[ "79.562" ]
task095-f6f5fc37b0f44b23b675bd0dea032ef4
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.564 6.183 73.406] Output:
[ "73.406" ]
task095-c1148e756bf94f08a8cf1e15975acd1a
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: [-56.486 -84.98 86.535 -5.06 -77.018 84.463 49.544 -1.817 86.456 -85.257] Output:
[ "86.535" ]
task095-998a30a61ba14858bb6154ead1624289
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.633 60.518 -18.954 7.062 -83.092 -15.558 21.207] Output:
[ "-83.092" ]
task095-f59c5d529d5b462d8126287320cdbc6e
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: [ 4.508 -46.677 2.884 22.888 29.289] Output:
[ "-46.677" ]
task095-966e48afee83426dbeb3ca3d7e0ed43f
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.674 -81.572 -96.013] Output:
[ "-96.013" ]
task095-3207a5e499b2410ebfcb52ca69d789c2
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: [ 11.571 88.049 41.46 55.508 9.074 80.265 -94.405 18.14 85.614] Output:
[ "-94.405" ]
task095-b7e4a3920f624df88a7401a7fd29691b
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.566 1.189 36.39 54.399] Output:
[ "91.566" ]
task095-daa7b0f82d124f4e9cb1c4f51430c056
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.439 73.436 -33.626 81.455 38.776 56.099 61.623 -84.854 49.152] Output:
[ "-84.854" ]
task095-49b34719db86477db6e6733ac72c6cdd
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: [-36.687 -82.579 21.256 65.808 27.293 76.516 -1.332] Output:
[ "-82.579" ]
task095-21c85eb7af434c0898512c88008e08f8
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.483 -75.446 -42.102 -99.362 35.017 32.191 -17.684 -24.16 39.004 -8.469] Output:
[ "-99.362" ]
task095-13620cb1e82541e28f7fcbd76514e9cb
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.087 -96.457 -70.915 8.417 10.411 -24.903 56.566 79.28 -48.096] Output:
[ "-96.457" ]
task095-a5a68d341a8b4274bb21d4207c171dbe
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: [36.83 63.983 24.577] Output:
[ "63.983" ]
task095-1f2fffc1135d44a88108d3aa428b85e4
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.891 10.17 88.325 51.125 -62.962 -9.454] Output:
[ "88.325" ]
task095-fbcf1bd7d7d242bc8d7d79849f0361ee
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.239 -16.658 13.842 83.651 -82.44 82.317] Output:
[ "97.239" ]
task095-214a11e7576d469daa2f78068a06146c
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.547 78.043 -98.529 -67.573 -98.429 36.031 -94.918 -66.7 19.916] Output:
[ "98.547" ]
task095-a856d7d43f47473ba3a2133571a13906
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.065 92.832 -11.569 83.877 -25.063 43.161] Output:
[ "92.832" ]
task095-4431f0d09e014d2f8de43305b9077091
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: [ 56.945 17.854 89.55 28.51 -41.708 -53.739 96.915 -67.402 50.925] Output:
[ "96.915" ]
task095-0f0ba797435648d09244ad7165bd09c6
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.931 49.98 -76.24 61.833 44.785 -38.568 -72.502 -55.707 32.051] Output:
[ "-95.931" ]
task095-c6285096cbd94d37a760b7309993f669
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: [ 5.191 91.811 -54.284 -34.382 76.504 -24.463 23.009 -25.68 -96.227] Output:
[ "-96.227" ]
task095-ed80fee6b7204a1b89a835260b5f38e9
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.831 12.642 17.669 -70.316 -24.712 98.362 31.282] Output:
[ "98.362" ]
task095-04ca61db41eb499eb2d726c21baeef96
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.888 15.93 77.253 0.672 80.433 31.133 -30.071 -5.697 82.059 -66.277] Output:
[ "82.059" ]
task095-412814ac72dc4368b01e658acca200d6
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.369 98.991 90.323 -11.406 -81.385 19.619] Output:
[ "98.991" ]
task095-8e31484972c242fabb7c5a8a0e1f8ce4
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: [-55.641 -83.236 -3.815 -94.075 -52.281 -13.717 -69.887 -91.692 -82.343] Output:
[ "-94.075" ]
task095-0e4c3bd25489439ea2897f61cfa7a7c3
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: [-89.916 79.679] Output:
[ "-89.916" ]
task095-4a834efd1f1d45688f7d874f6529adc1
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.353 -32.17 -60.274] Output:
[ "-60.274" ]
task095-6cb4f85c393c4181aae48fda2c0295bd
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: [ 80.536 -23.735 50.207 -64.62 ] Output:
[ "80.536" ]
task095-bf1ec970eda84514bd04cf4bb0b12f81
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.665 -67.232 21.5 7.271 43.732 -95.403 -67.599 24.843 -15.917 -43.125] Output:
[ "-95.403" ]
task095-ea13fe2240ab436aa5040242d91dcb3c
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.72 79.003] Output:
[ "79.003" ]
task095-fb77769c091d4355aab957c9cfd0f985
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: [-84.473 81.778 90.304 -2.471 -8.737 98.506] Output:
[ "98.506" ]
task095-0ce3022e1369440d8d617f33d585f55c
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.97 66.421 -89.915 43.746 -10.188 24.039 35.612 19.283 -93.626] Output:
[ "-93.626" ]
task095-99c8a351cf3b40f89b28bd54d7ebdb9f
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.097 83.548 77.413 -61.949] Output:
[ "-92.097" ]
task095-c8fd2912c31c4fa99db6fc8ebeb14ab5
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.887 -10.122 -87.165 93.113 -11.369 -55.82 ] Output:
[ "93.113" ]
task095-324aeb4cdb294b819f912dc85213ea1b
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.34 57.869 -8.031 59.757 -86.003 18.295 6.145 29.579 -85.929] Output:
[ "-86.003" ]
task095-ba8cc659a23f4abeaaf1318e5bc09305
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.807 -14.672 7.643 3.425] Output:
[ "-39.807" ]
task095-47e4cb709d6b4b93a6423a980a3a16fb
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.152 32.442 -6.66 -82.071 52.581 7.617 -12.276 1.04 ] Output:
[ "-82.071" ]
task095-eb07b762eaf34d36a76b91045c8960c6
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.212 66.914 -53.453] Output:
[ "66.914" ]
task095-51e0bbae9add49fc96035e9a49d3f031
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.588 91.106 16.385 2.794 87.883 39.158 27.362 -64.882 87.075 98.113] Output:
[ "98.113" ]
task095-44c7e0a9bd0d43b18d342ba13e766595
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.679 38.452 78.908] Output:
[ "78.908" ]
task095-9df99b388ec64c13bc2b289c5ee8bd4a
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: [ 88.026 -71.227 -19.557 -43.239 5.826 -36.253 69.785 5.547 85.373] Output:
[ "88.026" ]
task095-c57f806df1a9495192cf27e02099def0
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.179 20.265 14.923 37.96 -40.463 -16.275 6.853 -23.467] Output:
[ "-40.463" ]
task095-f2ad3066f9164f1fb46f119776b47579
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.556 -69.757 -21.337 92.402 -82.482 91.221 76.859] Output:
[ "92.402" ]
task095-b6b86ebdbfce4f2c97badff07634b8f1
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.868 -19.41 36.285 2.708 51.359 -4.916 12.82 57.892] Output:
[ "57.892" ]
task095-9f757efcbe1047c7b62354709537ae23
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.975 90.672 69.876 50.466 -51.36 ] Output:
[ "90.672" ]
task095-a61704da2c59469792b40e16ff68b8cf
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.869 -53.967 89.428 42.484] Output:
[ "89.428" ]
task095-94cd6fa37c684355b86956e2070fa364
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.476 16.87 -74.237 -22.346 9.405 74.616 -74.514 22.481 -11.938 77.361] Output:
[ "77.361" ]
task095-61efe920a74d4c7b98b70c81af3744ca
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: [ 34.676 96.818 9.202 -12.651 24.374 -14.405] Output:
[ "96.818" ]
task095-47ae88ade6f64ce2aa76a527064800f5
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.485 -31.156] Output:
[ "42.485" ]
task095-3fa5c9141908456686d535061e568721
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: [-94.319 -40.769 9.582 -93.75 ] Output:
[ "-94.319" ]
task095-e357d650c28a48a591fe0cf5ad8eefb1
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.184 -92.436 34.195 -81.312] Output:
[ "-92.436" ]
task095-d7096f4171e9439a913ff00b0b0a5237
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.254 53.147 -71.386 51.689 88.476 35.717 -66.925 -96.746 -46.507] Output:
[ "-96.746" ]
task095-0f32c0f4cba94dba8575970c00bf0d98
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.141 16.807 -99.602 21.116 -17.586 -47.581 -55.978] Output:
[ "-99.602" ]
task095-f6c2a3664d0b476c88ed360f0520b74a
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: [-32.005 -72.722 -58.53 79.347 -36.526 -95.119 -31.845 -91.405] Output:
[ "-95.119" ]
task095-3cf899a1524e465ba02cea6adcc64671
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.268 88.684 35.455] Output:
[ "88.684" ]
task095-5ad40c0a63cc4329bd9de6fdc406078f
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.45 -4.451 -30.72 ] Output:
[ "86.45" ]
task095-06c6cde471e842dbb4debd744f723892
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.906 26.408 -7.858] Output:
[ "26.408" ]
task095-5a6bc10fd7d844159bce5267f3bf4581
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.302 -24.55 -45.744 46.416 78.242 19.636 -84.067] Output:
[ "-84.067" ]
task095-01804aff55a14e10a5cf19bfb6a12dbd
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.478 31.769 -8.022 -18.322 21.432 -89.369 63.682 69.546] Output:
[ "-89.369" ]
task095-64e322ed25ee47279884518a6c976e0f
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.737 -72.336 62.424 -15.438 14.289 -42.063 -63.207 -25.765] Output:
[ "-72.336" ]
task095-8ae5a159033e4240bb7ed4d94242b8ab
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.198 -36.165 -28.97 -40.833 -63.483 48.619 -12.157] Output:
[ "-63.483" ]
task095-93e575855b1e4d6eb3381d6428e8e4a5
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.01 -13.744 -43.494 -23.895 -90.182 -61.09 ] Output:
[ "-90.182" ]
task095-500a0848a5c8412f83f238c62d697074
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: [ 17.867 -17.245 -42.772 47.68 -85.892 0.937] Output:
[ "-85.892" ]
task095-c854742b77d14b5eb7fb3c1801fb1e19
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: [-33.481 -67.442] Output:
[ "-67.442" ]
task095-cda8783c346442f492bbc7543a2396c5