* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
837 B
837 B
id, title, challengeType, videoUrl, forumTopicId, dashedName
id | title | challengeType | videoUrl | forumTopicId | dashedName |
---|---|---|---|---|---|
cf1111c1c11feddfaeb7bdef | 将一个数组嵌套在另一个数组中 | 1 | https://scrimba.com/c/crZQZf8 | 18247 | nest-one-array-within-another-array |
--description--
你也可以在数组中包含其他数组,例如:[["Bulls", 23], ["White Sox", 45]]
。这被称为一个多维数组。
--instructions--
创建一个名为myArray
的多维数组。
--hints--
应该包含至少一个嵌入的数组。
assert(Array.isArray(myArray) && myArray.some(Array.isArray));
--seed--
--after-user-code--
if(typeof myArray !== "undefined"){(function(){return myArray;})();}
--seed-contents--
// Only change code below this line
var myArray = [];
--solutions--
var myArray = [[1,2,3]];