mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
752 B
30 lines
752 B
4 years ago
|
[
|
||
|
{
|
||
|
"description": "basic with a single value",
|
||
|
"code": "equal(average([12]), 12)"
|
||
|
},
|
||
|
{
|
||
|
"description": "basic with multiple values",
|
||
|
"code": "equal(average([1, 1, 4]), 2)"
|
||
|
},
|
||
|
{
|
||
|
"description": "Test with negative numbers",
|
||
|
"code": "equal(average([6, 3, -3]), 2)"
|
||
|
},
|
||
|
{
|
||
|
"description": "Test with a bigger array",
|
||
|
"code": "equal(average([1, 4, 8, 12]), 6.25)"
|
||
|
},
|
||
|
{
|
||
|
"description": "Test with 0 values",
|
||
|
"code": "equal(average([]), NaN)"
|
||
|
},
|
||
|
{
|
||
|
"description": "Test with a negative result",
|
||
|
"code": "equal(average([-12, 2, -32]), -14)"
|
||
|
},
|
||
|
{
|
||
|
"description": "Anti Cheesing",
|
||
|
"code": "if (/[1-9]/.test(average)) {\n throw Error('You should not need numbers from 1 to 9')\n}"
|
||
|
}
|
||
|
]
|