tweak: decompose into two different packages, part 1/n
14
.gitignore
vendored
|
@ -7,14 +7,14 @@ Notes.md
|
||||||
.swp
|
.swp
|
||||||
|
|
||||||
# hacky upload script
|
# hacky upload script
|
||||||
lib/pushToMongoManually.js
|
packages/webpage/lib/pushToMongoManually.js
|
||||||
|
|
||||||
# convenience old folder
|
# convenience old folder
|
||||||
pages/.old/*
|
packages/webpage/pages/.old/*
|
||||||
pages/.old
|
packages/webpage/pages/.old
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
/node_modules
|
**/node_modules
|
||||||
/.pnp
|
/.pnp
|
||||||
.pnp.js
|
.pnp.js
|
||||||
|
|
||||||
|
@ -22,11 +22,11 @@ pages/.old
|
||||||
/coverage
|
/coverage
|
||||||
|
|
||||||
# next.js
|
# next.js
|
||||||
/.next/
|
**/.next/
|
||||||
/out/
|
**/out/
|
||||||
|
|
||||||
# production
|
# production
|
||||||
/build
|
**/build
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
Before Width: | Height: | Size: 289 KiB After Width: | Height: | Size: 289 KiB |
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 294 KiB |
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
Before Width: | Height: | Size: 282 KiB After Width: | Height: | Size: 282 KiB |
Before Width: | Height: | Size: 266 KiB After Width: | Height: | Size: 266 KiB |
Before Width: | Height: | Size: 294 KiB After Width: | Height: | Size: 294 KiB |
|
@ -253,6 +253,9 @@ export default function ComparisonView({ listOfElementsForView }) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function mergeSort({ array, comparisons }) {
|
function mergeSort({ array, comparisons }) {
|
||||||
|
console.log("mergesort");
|
||||||
|
console.log({ array, comparisons });
|
||||||
|
console.log("/console");
|
||||||
if (array == "No comparison found; unable to proceed") {
|
if (array == "No comparison found; unable to proceed") {
|
||||||
return "No comparison found; unable to proceed";
|
return "No comparison found; unable to proceed";
|
||||||
}
|
}
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |