fix: remove repl.it links spanish challenge articles (#36205)

This commit is contained in:
Randell Dawson
2019-07-09 09:12:40 -07:00
committed by Parth Parth
parent 5602111789
commit b5e5f11674
67 changed files with 1 additions and 137 deletions

View File

@@ -86,7 +86,6 @@ A = {1, 2, 3}
```](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce)
[![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":cohete:")](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce) [Ejecutar código](https://repl.it/C4II/0)
### Explicación del código:
@@ -141,7 +140,6 @@ A = {1, 2, 3}
sym([1, 2, 3], [5, 2, 1, 4]);
```
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":cohete:") [Ejecutar código](https://repl.it/CLoc/0)
### Explicación del código:
@@ -176,7 +174,6 @@ A = {1, 2, 3}
sym([1, 2, 3], [5, 2, 1, 4]);
```
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":cohete:") [Ejecutar código](https://repl.it/@ashenm/Symmetric-Difference)
### Explicación del código:

View File

@@ -38,7 +38,6 @@ function swap(a, b, arr){
`js function bubbleSort(array) { for (let i = 0; i < array.length; i++){ for (let j = 0; j < array.length-1-i; j++){ if (array[j] > array[j+1]) [array[j], array[j+1]] = [array[j+1], array[j]]; // Using ES6 array destructuring to swap } } return array; }`
* [Ejecutar código](https://repl.it/@ezioda004/Bubble-Sort)
### Referencias:

View File

@@ -32,7 +32,6 @@ function insertionSort(array) {
}
```
* [Ejecutar código](https://repl.it/@ezioda004/Insertion-Sort)
### Referencias:

View File

@@ -48,7 +48,6 @@ localeTitle: Implementar Merge Sort
}
```
* [Ejecutar código](https://repl.it/@ezioda004/Merge-Sort)
### Referencias:

View File

@@ -48,7 +48,6 @@ localeTitle: Implementar ordenación rápida
}
```
* [Ejecutar código](https://repl.it/@ezioda004/Quick-Sort)
### Referencia:

View File

@@ -106,7 +106,6 @@ Devuelve el inventario completado en orden alfabético.
updateInventory(curInv, newInv);
```
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":cohete:") [Ejecutar código](https://repl.it/CLok/0)
### Explicación del código:
@@ -192,7 +191,6 @@ Devuelve el inventario completado en orden alfabético.
updateInventory(curInv, newInv);
```
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":cohete:") [Ejecutar código](https://repl.it/CLol/0)
### Explicación del código:
@@ -268,7 +266,6 @@ Devuelve el inventario completado en orden alfabético.
updateInventory(curInv, newInv);
```
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":cohete:") [Ejecutar código](https://repl.it/MQvv/latest)
### Explicación del código:

View File

@@ -145,7 +145,6 @@ function permAlone(str) {
permAlone('aab');
```
![:rocket:](https://forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=3 ":cohete:") [Ejecutar código](https://repl.it/CLop/0)
### Explicación del código: