Datasets:

Modalities:
Text
Formats:
parquet
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
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: [-78.507 77.335 -67.36 98.563 64.366 -76.804 -84.135] Output:
[ "98.563" ]
task095-9d5c43988ae242fb9bedc4a058afab8c
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.831 -15.806 -59.543 41.113 -50.339 -50.971 35.161 -56.66 -32.542 -25.48 ] Output:
[ "95.831" ]
task095-0ab780cc843a4b54af4b32b0853666cf
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.195 11.814 -3.249 70.905 5.478 47.601 89.208 -28.003 53.084] Output:
[ "89.208" ]
task095-db56b671a70949a689d0888caaf0e6a9
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.944 -77.728 -64.67 -46.874 46.937 63.268 -64.403 71.659] Output:
[ "-77.728" ]
task095-b95ac4c191cc414b93192e60b6b379b1
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: [ 20.672 7.454 -22.687 84.648 68.862 38.192 -28.493 -27.922] Output:
[ "84.648" ]
task095-16cf6bafca0448eca60fccd946d291a2
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.512 -32.692 -51.48 50.212 -82.409 -77.472] Output:
[ "-82.409" ]
task095-79734560bb434b16918dda8caaf6c3ba
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.266 -2.845 -93.552 -78.74 81.282 -96.165 55.473] Output:
[ "-96.165" ]
task095-b7de05eec2d24705b0eaf5228e846e0b
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.688 -59.251 34.613 -74.514 -7.219 24.093 89.217 66.721 27.373] Output:
[ "89.217" ]
task095-b6a54a30d3c948a1947eeb6eb80afa97
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [1.522 0.574] Output:
[ "1.522" ]
task095-1f00ba98b06a41fe92ba0743b37eac1a
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-12.046 -28.763 51.705 30.683 -6.502] Output:
[ "51.705" ]
task095-59f359314745476ab8eeda4ddcdba3a9
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.258 55.389 -67.208 8.827 15.108 -28.045 -94.243 10.955] Output:
[ "-94.243" ]
task095-5bb2a2d6669843f49c7899033b2103fa
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: [-96.54 31.293 12.478 -72.388 -30.193 92.04 32.292 -79.393 -16.717 -53.358] Output:
[ "-96.54" ]
task095-bac51a587c9c4e2a8d495fa8dbf0b0db
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.675 -16.426 1.097] Output:
[ "89.675" ]
task095-6e192d972059401abf806e340b7305e2
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.274 25.784 47.913 52.918 -31.691] Output:
[ "-94.274" ]
task095-5953432042f14cf6863f9f50507a6da5
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.376 -41.808 17.916 -60.981 -48.364 20.459 41.875 79.873 94.886 -1.402] Output:
[ "94.886" ]
task095-3f1068787e274fc5a58b1e632962d6e1
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.099 45.595 -20.186 -70.797 21.318 27.465 29.725] Output:
[ "-70.797" ]
task095-81e32b5d7c984604b3b5436745a71abe
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.305 -56.166] Output:
[ "62.305" ]
task095-b86de521cc6642749bc200c9229f5776
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: [ -3.679 -25.406 68.626 -41.873 -40.74 -84.295] Output:
[ "-84.295" ]
task095-bf3ee86aa0994863851d4c2b0e0670f1
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.877 -60.755 -73.122 19.741] Output:
[ "-73.122" ]
task095-46cfe448d805480386e0f1cbb25b97a1
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.554 18.43 -32.02 -32.152] Output:
[ "90.554" ]
task095-83498f50590f4e90b9e52a92a2df1c39
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.253 77.897 37.045] Output:
[ "77.897" ]
task095-9e75e8b39d1344b68c164d0dcbe00f68
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: [ 35.599 37.712 28.854 36.085 -15.64 73.278 56.688] Output:
[ "73.278" ]
task095-8aad82fc54e24918949d35d872f959d3
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 29.221 -64.632 -0.752 -65.124 -78.064 79.288 -36.18 ] Output:
[ "79.288" ]
task095-28fad031fd3a41d6a37215a0c6c2c14b
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.732 1.223 61.516 -88.07 -63.488 53.769 73.47 -0.708 35.719] Output:
[ "-88.07" ]
task095-e2dd6eeff3fb425b975d9eae9ee8a8b9
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: [ 67.37 -33.152] Output:
[ "67.37" ]
task095-5f2d1aef04e34ae88aeaf33afc166f9e
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.552 -53.306 -46.736 -19.458 -76.252 -31.889 62.093 70.492 60.058] Output:
[ "88.552" ]
task095-6b45ef7a25b04b80914c5f88858c2fb4
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.863 -80.222 64.803 -79.888 -91.469 94.832 -10.969 -29.689 67.907] Output:
[ "94.832" ]
task095-79eda05e06a74112943dd19893666a57
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 69.522 -97.775 55.438 -84.324 22.75 24.472 -96.449 -7.122 -52.46 -23.535] Output:
[ "-97.775" ]
task095-d209de83ecf84d00a1507b4689e72cf4
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.867 -15.24 -92.705 -88.084 82.921] Output:
[ "-92.705" ]
task095-810ca36796bd40278bb620cd02b677a7
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-18.977 10.585 -86.167 45.408 77.255 -35.095 -79.318 -0.468] Output:
[ "-86.167" ]
task095-48d88979b6c54198960683867b242cf4
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.253 20.663 -29.993 43.653 49.555 29.021 -56.988 -69.362 4.506] Output:
[ "92.253" ]
task095-b4be03b5e2484a42909785448146adb0
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 58.333 20.894 95.568 -22.117 -39.318 -59.84 -61.396] Output:
[ "95.568" ]
task095-ed59ef2694a040d5a9810964f047c11e
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: [-26.773 4.221 64.626 -1.695 7.031 -92.755 -20.947 -59.666] Output:
[ "-92.755" ]
task095-e64059170e4643ad99ef6fd3077e4f62
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-77.955 80.72 -6.078 30.311 83.892] Output:
[ "83.892" ]
task095-413f1604777340fc88e82c6e089c76dc
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: [-47.477 45.601] Output:
[ "-47.477" ]
task095-813ee68ceeec4f20b0ac1b97b84de99a
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.704 -93.324] Output:
[ "-93.324" ]
task095-0855dc3b78e244a2afae6287b64be4f3
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.7 24.097 -61.831 -28.981 12.681 14.065] Output:
[ "-97.7" ]
task095-c4020981990e49d4a3f4a4c287ed78e8
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 69.135 -43.467 -21.766 -85.887 -49.199 58.32 -16.446 29.418] Output:
[ "-85.887" ]
task095-85d773384b884f73ad5935f2329a2e6b
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.619 -56.519 69.579 46.272 42.541 -66.716] Output:
[ "-99.619" ]
task095-bc10e3faafbe456abd47d66da9078236
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.132 8.89 56.083 33.886 -26.117 -34.846 -73.042 -19.953 94.992] Output:
[ "94.992" ]
task095-e0ca5d9555214edbb10a5c995a4b3205
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: [ 3.665 91.36 10.325 -87.36 -51.503 -49.953] Output:
[ "91.36" ]
task095-49033ee5c830425eb7abe51bc1dd3de3
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.231 -30.767 -89.949 -86.506] Output:
[ "-89.949" ]
task095-4f981ffd83404cd0af361fb1f998cc22
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: [-52.086 99.622 -84.774 59.412] Output:
[ "99.622" ]
task095-eec6d1895c57408f840b230e25376131
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.016 -75.066 -83.248 58.123] Output:
[ "-83.248" ]
task095-d6763fca8c534e32b355d07b16acaf4f
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: [-67.741 -92.157 -96.427 44.857 -90.698 -67.754] Output:
[ "-96.427" ]
task095-5c5db8372ffe4316bcc3c737cbc56d8a
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.927 28.572] Output:
[ "32.927" ]
task095-f51a3a1edb0f4136971e22e1ce1513f7
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: [71.423 53.716] Output:
[ "71.423" ]
task095-51ad99c8e261470194a097f7ad7bc783
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.529 35.035 54.847 -20.991 -59.018 -91.416 -8.878] Output:
[ "-91.416" ]
task095-ff6aad07d13b467fa158fd923001c6f8
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.739 28.032 -83.59 ] Output:
[ "-83.59" ]
task095-e06db8e425d14d05bb600cc5e170ba67
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.213 47.291 -19.612] Output:
[ "56.213" ]
task095-f2b90f1e6bec4787938f043f599e4732
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: [ 47.235 58.428 -34.121 -50.522 -23.311] Output:
[ "58.428" ]
task095-e6a8a926d24b425a9f52d86f8527a4ab
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-58.597 -74.02 -94.447 -61.364 94.152 40.219 48.075 -85.361] Output:
[ "-94.447" ]
task095-91ca5865f6994105ab23823b2f2b7626
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: [ 52.495 61.359 99.438 7.575 -97.397] Output:
[ "99.438" ]
task095-88ef299d56f847d3b2b3bfd47cb2241a
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.727 -23.557 -58.789 62.302 21.972 56.088] Output:
[ "62.302" ]
task095-d968e1733a9047bfa45ee3baa93d38c8
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 77.949 46.839 30.715 -36.855 -36.367 41.258 -50.276 20.024] Output:
[ "77.949" ]
task095-9875af0ce1ed40b896d1d66689999469
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.636 3.968 -64.702 71.005 -86.241 7.913 -11.125 93.501 -0.829] Output:
[ "93.501" ]
task095-dfea474b2d534681823028165dc3d7bd
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: [ 67.499 -35.772 39.619] Output:
[ "67.499" ]
task095-54b3c13b1e0c48329e75234fc2dcda61
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.176 95.994 73.642 27.114 -35.809 -26.205 -16.663 5.531] Output:
[ "95.994" ]
task095-e91e038e8c064518935f55b510a22382
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: [ 26.972 53.37 -2.069 -72.309 -1.44 ] Output:
[ "-72.309" ]
task095-0ebcd85c71c64538a83327875fc50e27
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: [ 26.371 -98.864 -90.281 54.029 86.181 -1.089 -85.13 ] Output:
[ "-98.864" ]
task095-287e520a3ef9409c8cd7637cc187cceb
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.512 -65.828 -2.543 28.336 25.415 44.93 ] Output:
[ "-65.828" ]
task095-f55fdc459bc04f94bacb8955763d9735
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.471 14.576 -95.979 91.127 52.83 80.603] Output:
[ "-95.979" ]
task095-4f530ee86b3d46ef993b23164413f9e9
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.661 -92.413 -13.532 -60.589 64.101 -70.822 -24.875] Output:
[ "-92.413" ]
task095-11b561c609224118bb54c6a1601fe6d0
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.132 -91.276 42.944 -70.892 -46.437 97.396 -67.327 89.945] Output:
[ "97.396" ]
task095-ab29d1d6c0334b0ab4787984f3ef42a4
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-29.245 55.769 36.65 26.771 -95.773 30.797 74.994 -3.495 39.513 -82.911] Output:
[ "-95.773" ]
task095-ed7305ef595d45a695e617cf7a6e3ea8
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.901 97.826 -3.829 -9.532 -53.556 -11.63 -67.656] Output:
[ "-99.901" ]
task095-d6f5bc4d2d584f32adb01fd8d58d674c
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.69 -96.947 -12.026 72.102] Output:
[ "-96.947" ]
task095-75913793634149e5bab3665476fe4c66
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.349 -43.886] Output:
[ "-90.349" ]
task095-8837397855f542ad89c36a43a0cc4294
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 49.097 -62.13 -53.532 -41.478 95.709 -57.294 72.412 92.513 -40.505] Output:
[ "95.709" ]
task095-7cde0b6fe79846979495cc73acdf9aa1
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-63.333 -77.223 -90.21 82.36 4.395 87.41 21.111 -12.462 36.751 -93.673] Output:
[ "-93.673" ]
task095-b4a33a2b419c423c954c8d22025859c8
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: [ 67.867 84.731 -54.973 -92.497 -94.55 -5.742] Output:
[ "-94.55" ]
task095-0154644e71634a12bdb0fd335d8a08dd
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: [-3.861 34.836 2.171] Output:
[ "34.836" ]
task095-e6c3253a8cbd4e47b50467ac840d649a
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.747 -12.389 90.188] Output:
[ "-91.747" ]
task095-443afd191c4b4ddbbd511aa799dfce5a
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.17 46.861] Output:
[ "-92.17" ]
task095-d1c4b13cb16f4e5fa3dcbce2cb60fa41
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: [ 21.086 75.756 -9.35 36.363 -54.352 -85.893 -78.659 89.488 -83.985 37.75 ] Output:
[ "89.488" ]
task095-f69857f0beb2473abcf9d4fcc8691672
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.852 -61.15 ] Output:
[ "-61.15" ]
task095-c12133852f6446048f57466aee203a23
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: [ 85.163 -69.465 29.454 -38.786 50.735 -12.762] Output:
[ "85.163" ]
task095-8a96f10adf59465785b542a1b3edb506
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.131 -91.09 42.58 -63.231 -48.304 37.984 16.046 -45.117 -1.01 ] Output:
[ "-91.09" ]
task095-92925b3ea279423a9a74c694c158344a
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.7 -34.077] Output:
[ "-99.7" ]
task095-25da64aff41540a182be5b4f291f5a02
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.221 29.818 -8.17 -97.82 -35.115 -17.93 -37.653 -38.163 99.049 -11.046] Output:
[ "99.049" ]
task095-a84fd8b5d99649dbba96c7a88bdab1ee
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 40.929 -39.327 -48.676 -94.296 23.39 -70.994] Output:
[ "-94.296" ]
task095-6e9c401cc2be436e9497441f197bef81
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.496 -61.418 5.349 27.85 80.354 84.008 -49.633 -41.307 94.583 42.1 ] Output:
[ "94.583" ]
task095-3359f17adaff4bcc8468d5810eb85181
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.325 27.592 38.565 7.26 ] Output:
[ "38.565" ]
task095-b79681a371914aff9b7d649a1cbe49bf
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.798 -95.726] Output:
[ "-95.726" ]
task095-14e3447e82224280bd27c3ca02cbdaf3
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.005 39.151 21.552 -49.286 -69.131 -57.456 77.603 -49.525] Output:
[ "77.603" ]
task095-74dda0b7a2a845de9c37984bfd1d433a
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.702 -76.186] Output:
[ "-76.186" ]
task095-1e71ef2e56cf441eb6edc716d8fe38b6
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 29.706 43.347 81.164 86.575 17.965 -95.916 88.475 96.929] Output:
[ "96.929" ]
task095-76103e2056b04346a417f06da065e2ee
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: [ 21.005 -13.493 -84.114 -20.847 -82.292 -88.233] Output:
[ "-88.233" ]
task095-c63ef37aaf0a4096b996d67c44fa093c
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.112 47.399 -73.256 -96.106 60.865 93.08 34.945 48.281 -96.197] Output:
[ "-96.197" ]
task095-2b79d8f50f6f44dd9a0c463e88d9081f
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-59.312 -78.689 -24.992 54.452] Output:
[ "-78.689" ]
task095-40645fb0a71441e2af51b4267e02ca6d
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ 12.896 -62.164 15.636 -97.87 85.564 27.395] Output:
[ "-97.87" ]
task095-f03ab88e49f54f5ca3af3bad4d4b5b41
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.312 5.364 60.046 -62.435] Output:
[ "-62.435" ]
task095-a7a59acad28146099acb7ccfac27cca5
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: [-96.644 65.407 -85.647 52.661] Output:
[ "-96.644" ]
task095-d7eec0009d284e2194909c2ca81071d8
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: [ 79.174 72.035 -42.566 -2.088 1.492 58.241 24.082 -42.05 -44.222] Output:
[ "79.174" ]
task095-cacea588da3448f1b6fb9ff8bd139161
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.612 -97.839 -83.906 71.946 -4.528] Output:
[ "-97.839" ]
task095-1baed18c6fa34634b0919d0a5b9920f8
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [ -1.378 92.863 81.653 -60.459 -39.53 37.148 -98.348] Output:
[ "-98.348" ]
task095-cd174ed4af09443d9d85f4be93ebc849
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.205 -54.879 69.31 ] Output:
[ "-92.205" ]
task095-0cc6b17fe4cb499b93b718aae1372d4c
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.465 -56.39 ] Output:
[ "84.465" ]
task095-738f57f9fd0b445aa253f89c3464c470
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [-63.959 -52.203 -45.884 -71.987 89.047] Output:
[ "89.047" ]
task095-2b9bdefc6fbf4f16ace26dc5a95bd9a3
Definition: In mathematics, the absolute value of a number is the non-negative value of that number, without regarding its sign. For example, the absolute value of -2 is 2, and the absolute value of 5 is 5. In this task you will be given a list of numbers and you need to return the element with highest absolute value. If a negative and positive element have the same absolute value you should return the positive element. The absolute value for negative numbers can be found by multiplying them by -1. After finding the element with the maximum absolute value you should return the value of that element before you applied the absolute value. Positive Example 1 - Input: [-11, 2, 3] Output: -11 Positive Example 2 - Input: [-4,-200,19,20,200] Output: 200 Negative Example 1 - Input: [10,-8,-9.9, 1] Output: -9.9 Negative Example 2 - Input: [-15,10,3,-7,-2] Output: 15 Now complete the following example - Input: [68.66 92.213 90.54 91.049 -2.309] Output:
[ "92.213" ]
task095-a27dee8e426f4d37844f7f46921630e6

Dataset Card for Natural Instructions (https://github.com/allenai/natural-instructions) Task: task095_conala_max_absolute_value

Additional Information

Citation Information

The following paper introduces the corpus in detail. If you use the corpus in published work, please cite it:

@misc{wang2022supernaturalinstructionsgeneralizationdeclarativeinstructions,
    title={Super-NaturalInstructions: Generalization via Declarative Instructions on 1600+ NLP Tasks}, 
    author={Yizhong Wang and Swaroop Mishra and Pegah Alipoormolabashi and Yeganeh Kordi and Amirreza Mirzaei and Anjana Arunkumar and Arjun Ashok and Arut Selvan Dhanasekaran and Atharva Naik and David Stap and Eshaan Pathak and Giannis Karamanolakis and Haizhi Gary Lai and Ishan Purohit and Ishani Mondal and Jacob Anderson and Kirby Kuznia and Krima Doshi and Maitreya Patel and Kuntal Kumar Pal and Mehrad Moradshahi and Mihir Parmar and Mirali Purohit and Neeraj Varshney and Phani Rohitha Kaza and Pulkit Verma and Ravsehaj Singh Puri and Rushang Karia and Shailaja Keyur Sampat and Savan Doshi and Siddhartha Mishra and Sujan Reddy and Sumanta Patro and Tanay Dixit and Xudong Shen and Chitta Baral and Yejin Choi and Noah A. Smith and Hannaneh Hajishirzi and Daniel Khashabi},
    year={2022},
    eprint={2204.07705},
    archivePrefix={arXiv},
    primaryClass={cs.CL},
    url={https://arxiv.org/abs/2204.07705}, 
}

More details can also be found in the following paper:

@misc{brüelgabrielsson2024compressserveservingthousands,
    title={Compress then Serve: Serving Thousands of LoRA Adapters with Little Overhead}, 
    author={Rickard Brüel-Gabrielsson and Jiacheng Zhu and Onkar Bhardwaj and Leshem Choshen and Kristjan Greenewald and Mikhail Yurochkin and Justin Solomon},
    year={2024},
    eprint={2407.00066},
    archivePrefix={arXiv},
    primaryClass={cs.DC},
    url={https://arxiv.org/abs/2407.00066}, 
}

Contact Information

For any comments or questions, please email Rickard Brüel Gabrielsson

Downloads last month
0
Edit dataset card