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

2.3 KiB

title id challengeType videoUrl localeTitle
Identity matrix 5a23c84252665b21eecc7eb1 5 Matriz de identidad

Description

Una matriz de identidad es una matriz cuadrada de tamaño \ (n \ tiempos n \), donde los elementos diagonales son todos 1 s (unos), y todos los demás elementos son todos 0 s (ceros). \ begin {bmatrix} 1 & 0 & 0 \ cr 0 & 1 & 0 \ cr 0 & 0 & 1 \ cr \ end {bmatrix} Escriba una función que tome un número 'n' como parámetro y devuelva la matriz de identidad de orden nx n.

Instructions

Tests

tests:
  - text: <code>idMatrix</code> debería ser una función.
    testString: 'assert(typeof idMatrix=="function","<code>idMatrix</code> should be a function.");'
  - text: <code>idMatrix(1)</code> debería devolver una matriz.
    testString: 'assert(Array.isArray(idMatrix(1)),"<code>idMatrix(1)</code> should return an array.");'
  - text: '<code>idMatrix(1)</code> debe devolver <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> debe devolver <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> debe devolver <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> debe devolver <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