mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-08 21:23:32 +08:00
Added test for ScrambleStrings and formatted folder structure for other folders
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import { quickSort } from './QuickSortRecursive'
|
||||
import { quickSort } from '../QuickSortRecursive'
|
||||
|
||||
describe('QuickSortRecursive | Partition In Place Method', () => {
|
||||
it('Expectedly, throw some error if we pass a non-array input', () => {
|
@ -1,4 +1,4 @@
|
||||
import { selectionSort } from './SelectionSort'
|
||||
import { selectionSort } from '../SelectionSort'
|
||||
|
||||
describe('selectionSort', () => {
|
||||
it('expects to return the array sorted in ascending order', () => {
|
Reference in New Issue
Block a user