school

thing1's amazing school repo
Log | Files | Refs | Submodules | README

tree.py (151B)


      1 tree = [
      2     ['a', ['b']],
      3     ['b', ['c']],
      4     ['c', ['c']]
      5 ]
      6 
      7 
      8 def convertTree(myTree):
      9     output = []
     10     return output
     11 
     12 print(convertTree(tree))