1.7 KiB
1.7 KiB
title, id, challengeType, videoUrl, localeTitle
title | id | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
Identity matrix | 5a23c84252665b21eecc7eb1 | 5 | 身份矩阵 |
Description
Instructions
Tests
tests:
- text: <code>idMatrix</code>应该是一个功能。
testString: assert(typeof idMatrix=='function');
- text: <code>idMatrix(1)</code>应该返回一个数组。
testString: assert(Array.isArray(idMatrix(1)));
- text: '<code>idMatrix(1)</code>应返回<code>"+JSON.stringify(results[0])+"</code> 。'
testString: assert.deepEqual(idMatrix(1),results[0]);
- text: '<code>idMatrix(2)</code>应返回<code>"+JSON.stringify(results[1])+"</code> 。'
testString: assert.deepEqual(idMatrix(2),results[1]);
- text: '<code>idMatrix(3)</code>应返回<code>"+JSON.stringify(results[2])+"</code> 。'
testString: assert.deepEqual(idMatrix(3),results[2]);
- text: '<code>idMatrix(4)</code>应返回<code>"+JSON.stringify(results[3])+"</code> 。'
testString: assert.deepEqual(idMatrix(4),results[3]);
Challenge Seed
function idMatrix (n) {
// Good luck!
}
After Test
console.info('after the test');
Solution
// solution required
/section>