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
887 B
30 lines
887 B
[ |
|
{ |
|
"description": "Test 1", |
|
"code": "equal(extreme([-1, 0, 10, 5]), { bigest: 10, smallest: -1 })" |
|
}, |
|
{ |
|
"description": "Test 2", |
|
"code": "equal(extreme([22, 7, 32, 99, 54]), { bigest: 99, smallest: 7 })" |
|
}, |
|
{ |
|
"description": "Test 3", |
|
"code": "equal(extreme([-5, -22, -7, -32, -99, -54]), { bigest: -5, smallest: -99 })" |
|
}, |
|
{ |
|
"description": "Test 4", |
|
"code": "equal(extreme([-5, Infinity, -Infinity, -32, -99, -54]), {\n bigest: Infinity,\n smallest: -Infinity,\n})" |
|
}, |
|
{ |
|
"description": "Test 5", |
|
"code": "equal(extreme([1337]), { bigest: 1337, smallest: 1337 })" |
|
}, |
|
{ |
|
"description": "Test 6", |
|
"code": "equal(extreme([Infinity]), { bigest: Infinity, smallest: Infinity })" |
|
}, |
|
{ |
|
"description": "Anti Cheesing", |
|
"code": "if (/[0-9]/.test(extreme)) {\n throw Error('You should not need numbers')\n}" |
|
} |
|
] |