chore(i18n,learn): processed translations (#45682)

This commit is contained in:
camperbot
2022-04-15 22:46:36 +05:30
committed by GitHub
parent 049689bbd8
commit d177ff4e11
55 changed files with 4302 additions and 90 deletions

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600ed7
title: Copying Arrays Warning
title: Advertencia al copiar arrays
challengeType: 11
videoId: iIoQ0_L0GvA
bilibiliIds:
aid: 633008569
bvid: BV1Bb4y127fb
cid: 409026161
dashedName: copying-arrays-warning
---
@ -10,7 +14,7 @@ dashedName: copying-arrays-warning
## --text--
What is the value of `a` after running the following code?
¿Cual es el valor de `a` después de ejecutar el siguiente código?
```py
import numpy as np

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600ed6
title: Initialize Array Problem
title: Problema al inicializar el array
challengeType: 11
videoId: 0jGfH8BPfOk
bilibiliIds:
aid: 763027834
bvid: BV1w64y1a7eo
cid: 409025878
dashedName: initialize-array-problem
---
@ -10,7 +14,7 @@ dashedName: initialize-array-problem
## --text--
What is another way to produce the following array?
¿Cuál es la otra forma de crear el siguiente array?
```py
[[0. 0. 0. 0. 0. 0. 0.]

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600ed5
title: Initializing Different Arrays
title: Inicializando diferentes Arrays
challengeType: 11
videoId: CEykdsKT4U4
bilibiliIds:
aid: 718044756
bvid: BV1MQ4y1k7BB
cid: 409025638
dashedName: initializing-different-arrays
---
@ -10,7 +14,7 @@ dashedName: initializing-different-arrays
## --text--
What will the following code print?
¿Qué hará el siguiente código?
```py
a = np.array([[1, 2, 3, 4, 5], [6, 7, 8, 9, 10]])

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600eda
title: Loading Data and Advanced Indexing
title: Cargando datos e indexación avanzada
challengeType: 11
videoId: tUdBZ7pF8Jg
bilibiliIds:
aid: 720524642
bvid: BV1xQ4y1r7mu
cid: 409027117
dashedName: loading-data-and-advanced-indexing
---
@ -10,14 +14,14 @@ dashedName: loading-data-and-advanced-indexing
## --text--
Given a file named `data.txt` with these contents:
Se ha dado un archivo llamado `data.txt` con estos contenidos:
<pre>
29,97,32,100,45
15,88,5,75,22
</pre>
What code would produce the following array?
¿Qué código produciría el siguiente arreglo?
```py
[29. 32. 45. 15. 5. 22.]

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600ed8
title: Mathematics
title: Matemáticas
challengeType: 11
videoId: 7txegvyhtVk
bilibiliIds:
aid: 890533226
bvid: BV1KP4y1h733
cid: 409026503
dashedName: mathematics
---
@ -10,7 +14,7 @@ dashedName: mathematics
## --text--
What is the value of `b` after running the following code?
¿Cuál es el valor de `b` después de ejecutar el siguiente código?
```py
import numpy as np

View File

@ -1,8 +1,12 @@
---
id: 5e9a0a8e09c5df3cc3600ed9
title: Reorganizing Arrays
title: Reorganizando arreglos
challengeType: 11
videoId: VNWAQbEM-C8
bilibiliIds:
aid: 548035655
bvid: BV1fq4y1N7aC
cid: 409026755
dashedName: reorganizing-arrays
---
@ -10,7 +14,7 @@ dashedName: reorganizing-arrays
## --text--
What code would produce the following array?
¿Qué código produciría el siguiente arreglo?
```py
[[1. 1.]