Skip to content

Commit

Permalink
Configure package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
iltuzers committed Jan 14, 2024
1 parent de17d11 commit 307f8d1
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.vscode
.vscode
node_modules/
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"scripts": {
"deploy": "gh-pages -b main -d src"
}
38 changes: 37 additions & 1 deletion src/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -263,4 +263,40 @@ async function pauseBubbleSort() {

async function resumeBubbleSort() {
currentState = "running";
}
}

async function startHeapSort() {

}

async function pauseHeapSort() {

}

async function resumeHeapSort() {

}

async function startMergeSort() {

}

async function pauseMergeSort() {

}

async function resumeMergeSort() {

}

async function startQuickSort() {

}

async function pauseQuickSort() {

}

async function resumeQuickSort() {

}

0 comments on commit 307f8d1

Please sign in to comment.