Added test for ScrambleStrings and formatted folder structure for other folders

This commit is contained in:
Omkarnath Parida
2021-10-03 17:28:17 +05:30
parent 255ef9a50d
commit c198a9f53d
12 changed files with 26 additions and 11 deletions

View File

@ -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', () => {

View File

@ -1,4 +1,4 @@
import { selectionSort } from './SelectionSort'
import { selectionSort } from '../SelectionSort'
describe('selectionSort', () => {
it('expects to return the array sorted in ascending order', () => {