diff options
Diffstat (limited to 'comp/work/26/tree.py')
-rw-r--r-- | comp/work/26/tree.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/comp/work/26/tree.py b/comp/work/26/tree.py new file mode 100644 index 0000000..428f3aa --- /dev/null +++ b/comp/work/26/tree.py @@ -0,0 +1,12 @@ +tree = [ + ['a', ['b']], + ['b', ['c']], + ['c', ['c']] +] + + +def convertTree(myTree): + output = [] + return output + +print(convertTree(tree)) |