freeCodeCamp/curriculum/challenges/chinese/08-coding-interview-prep/rosetta-code/identity-matrix.chinese.md

2.2 KiB
Raw Blame History

title id challengeType videoUrl localeTitle
Identity matrix 5a23c84252665b21eecc7eb1 5 身份矩阵

Description

单位矩阵是大小为\n \次n \)的方阵,其中对角元素都是1 s1所有其他元素都是0 s。 \ begin {bmatrix} 100 \ cr 010 \ cr 001 \ cr \ end {bmatrix}编写一个以数字'n'作为参数并返回单位矩阵的函数订单nx n。

Instructions

Tests

tests:
  - text: <code>idMatrix</code>应该是一个功能。
    testString: 'assert(typeof idMatrix=="function","<code>idMatrix</code> should be a function.");'
  - text: <code>idMatrix(1)</code>应该返回一个数组。
    testString: 'assert(Array.isArray(idMatrix(1)),"<code>idMatrix(1)</code> should return an array.");'
  - text: '<code>idMatrix(1)</code>应返回<code>&quot;+JSON.stringify(results[0])+&quot;</code> 。'
    testString: 'assert.deepEqual(idMatrix(1),results[0],"<code>idMatrix(1)</code> should return <code>"+JSON.stringify(results[0])+"</code>.");'
  - text: '<code>idMatrix(2)</code>应返回<code>&quot;+JSON.stringify(results[1])+&quot;</code> 。'
    testString: 'assert.deepEqual(idMatrix(2),results[1],"<code>idMatrix(2)</code> should return <code>"+JSON.stringify(results[1])+"</code>.");'
  - text: '<code>idMatrix(3)</code>应返回<code>&quot;+JSON.stringify(results[2])+&quot;</code> 。'
    testString: 'assert.deepEqual(idMatrix(3),results[2],"<code>idMatrix(3)</code> should return <code>"+JSON.stringify(results[2])+"</code>.");'
  - text: '<code>idMatrix(4)</code>应返回<code>&quot;+JSON.stringify(results[3])+&quot;</code> 。'
    testString: 'assert.deepEqual(idMatrix(4),results[3],"<code>idMatrix(4)</code> should return <code>"+JSON.stringify(results[3])+"</code>.");'

Challenge Seed

function idMatrix (n) {
  // Good luck!
}

After Test

console.info('after the test');

Solution

// solution required