diff --git a/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-bubble-sort.md b/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-bubble-sort.md index 6cf8150f25..51fbb296de 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-bubble-sort.md +++ b/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-bubble-sort.md @@ -52,7 +52,7 @@ assert( ); ``` -`bubbleSort` should return an array that is unchanged except for order. +`bubbleSort([1,4,2,8,345,123,43,32,5643,63,123,43,2,55,1,234,92])` should return an array that is unchanged except for order. ```js assert.sameMembers( @@ -113,8 +113,6 @@ function bubbleSort(array) { return array; // Only change code above this line } - -bubbleSort([1, 4, 2, 8, 345, 123, 43, 32, 5643, 63, 123, 43, 2, 55, 1, 234, 92]); ``` # --solutions-- diff --git a/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-insertion-sort.md b/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-insertion-sort.md index ce4a857bea..bbac650914 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-insertion-sort.md +++ b/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-insertion-sort.md @@ -48,7 +48,7 @@ assert( ); ``` -`insertionSort` should return an array that is unchanged except for order. +`insertionSort([1,4,2,8,345,123,43,32,5643,63,123,43,2,55,1,234,92])` should return an array that is unchanged except for order. ```js assert.sameMembers( @@ -109,8 +109,6 @@ function insertionSort(array) { return array; // Only change code above this line } - -insertionSort([1, 4, 2, 8, 345, 123, 43, 32, 5643, 63, 123, 43, 2, 55, 1, 234, 92]); ``` # --solutions-- diff --git a/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-merge-sort.md b/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-merge-sort.md index ab1dca4381..e6d9660a3a 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-merge-sort.md +++ b/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-merge-sort.md @@ -56,7 +56,7 @@ assert( ); ``` -`mergeSort` should return an array that is unchanged except for order. +`mergeSort([1,4,2,8,345,123,43,32,5643,63,123,43,2,55,1,234,92])` should return an array that is unchanged except for order. ```js assert.sameMembers( @@ -117,8 +117,6 @@ function mergeSort(array) { return array; // Only change code above this line } - -mergeSort([1, 4, 2, 8, 345, 123, 43, 32, 5643, 63, 123, 43, 2, 55, 1, 234, 92]); ``` # --solutions-- diff --git a/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-selection-sort.md b/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-selection-sort.md index 1a1b082090..5e677d406d 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-selection-sort.md +++ b/curriculum/challenges/english/10-coding-interview-prep/algorithms/implement-selection-sort.md @@ -48,7 +48,7 @@ assert( ); ``` -`selectionSort` should return an array that is unchanged except for order. +`selectionSort([1,4,2,8,345,123,43,32,5643,63,123,43,2,55,1,234,92])` should return an array that is unchanged except for order. ```js assert.sameMembers( @@ -109,9 +109,6 @@ function selectionSort(array) { return array; // Only change code above this line } - - -selectionSort([1, 4, 2, 8, 345, 123, 43, 32, 5643, 63, 123, 43, 2, 55, 1, 234, 92]); ``` # --solutions--