Anaplan interview question

Write an algorithm to check if a tree is a mirror.

Interview Answer

Anonymous

31 Jan 2017

Traverse the tree inorder and check if the result is palindrome.

1