CoinTribe interview question

Write function which takes root of binary tree as input and print postorder traversal in Python.

Interview Answer

Anonymous

Jun 26, 2017

Wrote the function using recursion.