fix(guide): Remove repl.it links from challenge related guide articles (English) (#36204)
* fix: remove repl.it links english * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com> * fix: add extra line Co-Authored-By: Tom <20648924+moT01@users.noreply.github.com>
This commit is contained in:
@@ -85,7 +85,6 @@ In the event of *odd number of sets* the symmetric difference will include ident
|
||||
}
|
||||
```
|
||||
|
||||
 <a href="https://repl.it/C4II/0" target="_blank" rel="nofollow">Run Code</a>
|
||||
|
||||
### Code Explanation: ###
|
||||
|
||||
@@ -140,7 +139,6 @@ In the event of *odd number of sets* the symmetric difference will include ident
|
||||
sym([1, 2, 3], [5, 2, 1, 4]);
|
||||
```
|
||||
|
||||
 <a href="https://repl.it/CLoc/0" target="_blank" rel="nofollow">Run Code</a>
|
||||
|
||||
### Code Explanation: ###
|
||||
|
||||
@@ -175,7 +173,6 @@ In the event of *odd number of sets* the symmetric difference will include ident
|
||||
sym([1, 2, 3], [5, 2, 1, 4]);
|
||||
```
|
||||
|
||||
 <a href="https://repl.it/@ashenm/Symmetric-Difference" target="_blank" rel="nofollow">Run Code</a>
|
||||
|
||||
### Code Explanation: ###
|
||||
|
||||
|
@@ -41,8 +41,7 @@ function bubbleSort(array) {
|
||||
return array;
|
||||
}
|
||||
```
|
||||
- [Run Code](https://repl.it/@ezioda004/Bubble-Sort)
|
||||
|
||||
|
||||
### References:
|
||||
- [GeeksForGeeks](https://www.geeksforgeeks.org/bubble-sort/)
|
||||
- [Wikipedia](https://en.wikipedia.org/wiki/Bubble_sort)
|
||||
|
@@ -26,7 +26,6 @@ function insertionSort(array) {
|
||||
return array;
|
||||
}
|
||||
```
|
||||
- [Run Code](https://repl.it/@ezioda004/Insertion-Sort)
|
||||
|
||||
### References:
|
||||
|
||||
|
@@ -44,7 +44,7 @@ function mergeSort(array) {
|
||||
return merger(left, right);
|
||||
}
|
||||
```
|
||||
- [Run Code](https://repl.it/@ezioda004/Merge-Sort)
|
||||
|
||||
### References:
|
||||
- [Wikipedia](https://en.wikipedia.org/wiki/Merge_sort)
|
||||
- Video by [Hackerrank](https://www.youtube.com/watch?v=KF2j-9iSf4Q)
|
||||
|
@@ -44,7 +44,7 @@ function quickSort(array, left = 0, right = array.length-1) {
|
||||
return array;
|
||||
}
|
||||
```
|
||||
- [Run Code](https://repl.it/@ezioda004/Quick-Sort)
|
||||
|
||||
### Reference:
|
||||
- [Wikipedia](https://en.wikipedia.org/wiki/Quicksort)
|
||||
- [Khan Academy](https://www.khanacademy.org/computing/computer-science/algorithms/quick-sort/a/overview-of-quicksort)
|
||||
|
@@ -105,7 +105,6 @@ Return the completed inventory in alphabetical order.
|
||||
updateInventory(curInv, newInv);
|
||||
```
|
||||
|
||||
 <a href='https://repl.it/CLok/0' target='_blank' rel='nofollow'>Run Code</a>
|
||||
|
||||
### Code Explanation:
|
||||
|
||||
@@ -191,7 +190,6 @@ Return the completed inventory in alphabetical order.
|
||||
updateInventory(curInv, newInv);
|
||||
```
|
||||
|
||||
 <a href='https://repl.it/CLol/0' target='_blank' rel='nofollow'>Run Code</a>
|
||||
|
||||
### Code Explanation:
|
||||
|
||||
@@ -267,7 +265,6 @@ Return the completed inventory in alphabetical order.
|
||||
updateInventory(curInv, newInv);
|
||||
```
|
||||
|
||||
 <a href='https://repl.it/MQvv/latest' target='_blank' rel='nofollow'>Run Code</a>
|
||||
|
||||
### Code Explanation:
|
||||
|
||||
|
@@ -141,7 +141,6 @@ A way to visualize this is by considering a tree that starts with the first char
|
||||
// Test here.
|
||||
permAlone('aab');
|
||||
|
||||
 <a href='https://repl.it/CLop/0' target='_blank' rel='nofollow'>Run Code</a>
|
||||
|
||||
### Code Explanation:
|
||||
|
||||
|
Reference in New Issue
Block a user