Skip to content

Commit 92d17b7

Browse files
authored
Merge pull request #1 from algorithms-in-action/2024_sem2
2024 sem2
2 parents cfd8eb3 + 840cceb commit 92d17b7

File tree

20 files changed

+1932
-13
lines changed

20 files changed

+1932
-13
lines changed

src/algorithms/controllers/collapseChunkPlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// below, otherwise hooks into what happens when blocks are expanded or
88
// contracted are not enabled.
99
const importsThis = ['quickSort', 'quickSortM3', 'msort_arr_td',
10-
'transitiveClosure', 'heapSort'];
10+
'transitiveClosure', 'heapSort', 'msort_lista_td'];
1111

1212
// eslint-disable-next-line import/no-cycle
1313
// See also accompanying mods/hooks in src/context/GlobalState.js and

src/algorithms/controllers/graphSearchColours.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
//
44
// OMG, colors for array and graph require different types and are
55
// inconsistent!
6-
// Arrary: '0'=Blue, '1'=Green
6+
// Array: '0'=Blue, '1'=Green
77
// Nodes: 1=Green, 4= Blue
88
// Edges: 1=Green, 2=Orange, 3=Red, 4=Blue
9-
// XXX not sure how this interracts with color perception options -
9+
// XXX not sure how this interacts with color perception options -
1010
// doesn't seem to work like this - should figure out how it's done if
1111
// it's still supported
1212
export const colors = {

src/algorithms/controllers/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ export { default as heapSort } from './heapSort';
44
export { default as quickSort } from './quickSort';
55
export { default as quickSortM3 } from './quickSortM3';
66
export { default as msort_arr_td } from './msort_arr_td';
7+
export { default as msort_lista_td } from './msort_lista_td';
78
export { default as transitiveClosure } from './transitiveClosure';
89
export { default as bruteForceStringSearch } from './bruteForceStringSearch';
910
export { default as horspoolStringSearch } from './horspoolStringSearch';

0 commit comments

Comments
 (0)