Skip to content

Commit

Permalink
feat(CV-0-1): wip, updating data layer and UI
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jonathan committed Dec 7, 2023
1 parent f52dfd7 commit c42e097
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion __tests__/sort/InsertionSort.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import {
insertionSort,
Tree,
treeCreate,
} from '@/'
} from '@/index'

type TreeNode = Tree & {
key: number
Expand Down
2 changes: 1 addition & 1 deletion __tests__/sort/MergeSort.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import {
numericCompare,
numericKeyCompare,
mergeSort,
} from '@/'
} from '@/index'

describe('MergeSort', () => {
it('string', () => {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/sort/SelectionSort.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import {
numericCompare,
numericKeyCompare,
selectionSort,
} from '@/'
} from '@/index'

describe('SelectionSort', () => {
it('string', () => {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/structures/Heap.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import {
heapSort,
buildMaxHeap,
// buildMinHeap,
} from '@/'
} from '@/index'

describe('Heap', () => {
it('buildMaxHeap', () => {
Expand Down
2 changes: 1 addition & 1 deletion __tests__/structures/List.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ import {
listIsLast,
listHas,
listQuery,
} from '@/'
} from '@/index'

type ListNode = Listable & {
key: number
Expand Down
2 changes: 1 addition & 1 deletion __tests__/structures/Stack.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import {
stackIsTop,
stackHas,
stackQuery,
} from '@/'
} from '@/index'

type StackNode = Stackable & {
key: number
Expand Down
2 changes: 1 addition & 1 deletion __tests__/structures/Tree.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import {
treeQuery,
treeInsertChildBefore,
treeInsertChildAfter,
} from '@/'
} from '@/index'

type A = Tree & {
key: number
Expand Down

0 comments on commit c42e097

Please sign in to comment.