Sobes.tech
Middle+

Implement a function that outputs all values at the ends of "branches" to the console interface ITree { left?: ITree | number; right?: ITree | number; } function printTree(data: ITree): void {}