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.
 
 
 
 
 
 

18 lines
790 B

[
{
"description": "values of the variable are a result of the operations on the variable smooth ( 10 )",
"code": "let smooth = 10\n\n// Your code\n\nequal(lessSmooth, 9)\nequal(semiSmooth, 5)\nequal(plus11, 21)"
},
{
"description": "values of the variable are a result of the operations on the variable smooth ( 27 )",
"code": "let smooth = 27\n\n// Your code\nequal(lessSmooth, 26)\nequal(semiSmooth, 13.5)\nequal(plus11, 38)"
},
{
"description": "ultraSmooth should be the square of the value of smooth ( 10 )",
"code": "let smooth = 10\n\n// Your code\n\nequal(ultraSmooth, 100)"
},
{
"description": "ultraSmooth should be the square of the value of smooth ( 27 )",
"code": "let smooth = 27\n\n// Your code\n\nequal(ultraSmooth, 729)"
}
]