diff options
author | standenboy <standenboy@seacrossedlovers.xyz> | 2024-03-18 13:21:36 +0000 |
---|---|---|
committer | standenboy <standenboy@seacrossedlovers.xyz> | 2024-03-18 13:21:36 +0000 |
commit | c696b4d6ded69074cd08c51b91eabeaeac5823ac (patch) | |
tree | ee8b7ff08580a3bffc237c5b8bac9a8bc26d2516 /comp/work/26 | |
parent | 647d3b98658ddae66882badc508633c9a33eff32 (diff) |
did homework
Diffstat (limited to 'comp/work/26')
-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)) |