Depending on OP's (and the interviewer's) background, the below may or may not be more persuasive as this problem is a straightforward martingale.
Reformulation:
This game runs until there is only one ball left and that ball's color gives the winning color. You should be able to convince yourself that this doesn't change the winner over any sample path. So we want to know the probability of only having 1 red ball left at termination.
$n := w +r$
let $R_t$ be the number of red balls remaining after $t$ drawings. Then
$E\Big[R_{t+1}\big \vert R_0, R_1, ..., R_t\Big] = R_t - \frac{R_t}{n - t}= \frac{n-t-1}{n-t}R_t = \frac{n-(t+1)}{n-t}R_t$
martingales are amendable to affine transforms (because conditional expectations are), so it's a standard result that you should, perhaps after fiddling with rescaling, get a martingale here, and the stopping time $T$ is bounded (i.e. the game ends WP1 after n-1 turns).
you should be able to see
$\frac{1}{n-(t+1)}E\Big[R_{t+1}\big \vert R_0, R_1, ..., R_t\Big]= \frac{1}{n-(t+1)} \cdot\frac{n-(t+1)}{n-t}R_t =\frac{1}{n-t}R_t$
so $R_t^*:= \frac{R_t}{n - t}$ is a martingale. If you are still uncertain, you may want to consider boundary conditions to confirm, in particular
$E\Big[R_{1}^*\big \vert R_0^*\Big]= \frac{1}{n - 1} \cdot E\Big[R_{1}\big \vert R_0\Big]= \frac{1}{n - 1}\cdot \frac{(n-1)R_0}{n} = \frac{R_0}{n} =\frac{r}{n}=R_0^* $
application of the martingale stopping theorem gives
$E\big[R_T^*\big] = E\big[R_0^*\big] = \frac{r}{n} = \frac{r}{r+w}$
but at the time of stopping, we have a Bernouli, i.e. if you win
$R_T^*$ takes on $1\cdot \frac{1}{n-(n-1)} = 1$ with probability $p$
and takes on the value of 0 if you lose so the probability of winning is
$p = E\big[R_T^*\big] = \frac{r}{r+w}$
it's easy to get bogged down in the bookkeeping here depending on interview dynamics. But, supposing your interviewer knows what a martingale is, my guess is you'd get bulk of the credit if you recognized this is a fair game and correctly computed $E\Big[R_{t+1}\big \vert R_0, R_1, ..., R_t\Big] = R_t - \frac{R_t}{n - t}$