Skip to content

Commit 1c9c67c

Browse files
committed
added test for C++ Backend for cocktail shaker sort
1 parent 5bb931e commit 1c9c67c

File tree

1 file changed

+1
-1
lines changed
  • pydatastructs/linear_data_structures/_backend/cpp/algorithms

1 file changed

+1
-1
lines changed

pydatastructs/linear_data_structures/_backend/cpp/algorithms/algorithms.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
static PyMethodDef algorithms_PyMethodDef[] = {
77
{"cocktail_shaker_sort", (PyCFunction) cocktail_shaker_sort,
8-
METH_VARARGS | METH_KEYWORDS, ""},
8+
METH_VARARGS | METH_KEYWORDS, ""},
99
{"quick_sort", (PyCFunction) quick_sort,
1010
METH_VARARGS | METH_KEYWORDS, ""},
1111
{"bubble_sort", (PyCFunction) bubble_sort,

0 commit comments

Comments
 (0)