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.
14 lines
644 B
14 lines
644 B
4 years ago
|
[
|
||
|
{
|
||
|
"description": "Test with a classic introduction",
|
||
|
"code": "let sentence = 'Hello There !'\n\n// Your code\n\nequal(words, ['Hello', 'There', '!'])"
|
||
|
},
|
||
|
{
|
||
|
"description": "Test with a basic catchphrase",
|
||
|
"code": "let sentence = 'Live Laugh Love'\n\n// Your code\n\nequal(words, ['Live', 'Laugh', 'Love'])"
|
||
|
},
|
||
|
{
|
||
|
"description": "Test with a long quote",
|
||
|
"code": "let sentence = 'Being on the edge isn’t as safe but the view is better'\n\n// Your code\n\nequal(words, [\n 'Being',\n 'on',\n 'the',\n 'edge',\n 'isn’t',\n 'as',\n 'safe',\n 'but',\n 'the',\n 'view',\n 'is',\n 'better',\n])"
|
||
|
}
|
||
|
]
|