We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c731fd commit baaa06dCopy full SHA for baaa06d
pydatastructs/trees/tests/test_m_ary_trees.py
@@ -1,5 +1,9 @@
1
from pydatastructs import MAryTree
2
+from pydatastructs.trees.m_ary_trees import ParentPointerTree
3
4
def test_MAryTree():
5
m = MAryTree(1, 1)
6
assert str(m) == '[(1, 1)]'
7
+
8
+def test_ParentPointerTree():
9
+ pass
0 commit comments