This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Given a binary tree, flatten it to a linked list levelwise. | |
class Tree{ | |
constructor(val){ | |
this.val = val | |
this.left = null | |
this.right = null | |
} | |
insertLeft(val){ |