Leetcode 0235. Lowest Common Ancestor of a Binary Search Tree
Posted on Thu 09 January 2025 in Leetcode • Tagged with least-common-ancestor, bst
Question Link : https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree/
Difficulty: Medium
Premium: False
Question
Given a binary search tree (BST), find the lowest common ancestor (LCA) node of two given nodes in the BST. According to the definition of LCA on Wikipedia: “The lowest common ancestor is defined between two nodes p …
Continue reading