CSAW CTF Qualifiers 2018
Last updated
Was this helpful?
Last updated
Was this helpful?
Binary trees let you do some interesting things. Can you balance a tree?
nc misc.chal.csaw.io 9001
Equal nodes should be inserted to the right of the parent node. You should balance the tree as you add nodes.
It inserted all the nodes into an AVL tree and did a preorder traversal
Flag: flag{HOW_WAS_IT_NAVIGATING_THAT_FOREST?}