Published onFebruary 15, 2023Find substringgotreecpThis is an Uber interview question and the solution implements tries, a data structure that you’ll see a lot in interview questions
Published onFebruary 14, 2023Restore binary treegotreecpConstruct Tree from given Inorder and Preorder traversals
Published onFebruary 3, 2023kthSmallestInBSTgodata-structuretreeBSTFind smallest element in kth position
Published onJanuary 29, 2023Check symmetric binary treegodata-structuretreeDetermine whether binary tree is symmetric around its center, i.e. each side mirrors the other.
Published onJanuary 26, 2023Custom Tree Traversalgodata-structuretreeTravese binary tree that ordered from the leftmost to the rightmost one