I am familiar with the Master's theorem and with the idea of telescoping a recurrence relation to find a closed form, but I could not solve this one:
$$T(n) = T(\dfrac{n}{3}) + T(\dfrac{2n}{3}) + \mathcal{O}(n), \hspace{4mm} n\in \mathbb{N}$$
$T(n)$ is only defined for positive integer inputs. The context where it arises from is trying to find the dependency of a Divide and Conquer recursive algorithm splitting the input in uneven parts of $\dfrac{n}{3}$ and $\dfrac{2n}{3}$ length.
The presence of two different terms confuses me, since the strategy I usually follow is to unroll until $T(1)$ appears, where it is a known value that can be substituted ($0$ in the case of sorting algorithms, for example).