Skip to content

Commit e3d8194

Browse files
committed
remove sort clas
1 parent 919d2e9 commit e3d8194

File tree

2 files changed

+0
-22
lines changed

2 files changed

+0
-22
lines changed

base.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
// class for sorting
2-
class sortData {
3-
constructor(data) {
4-
this.data = data;
5-
}
6-
selectionSort() {}
7-
bubbleSort() {}
8-
stopSort() {
9-
return false;
10-
}
11-
}
12-
131
//get selected algorithm
142
function getAlgo() {
153
var algo = document.getElementsByName("algo-name");

searching-algorithm/base.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,4 @@
11
// class for sorting
2-
class sortData {
3-
constructor(data) {
4-
this.data = data;
5-
}
6-
selectionSort() {}
7-
bubbleSort() {}
8-
stopSort() {
9-
return false;
10-
}
11-
}
122

133
//get selected algorithm
144
function getAlgo() {

0 commit comments

Comments
 (0)