Meta interview question

Given two node values in a binary tree, what is their lowest common ancestor?

Interview Answer

Anonymous

15 Jan 2025

I created a path for each target node, and found the lowest node based on those paths.