Only one of those values is possible in a real circuit since one is positive and the other is negative.
Now that you solved it, here's a check for your answer. Let's start several nodes out to the right.
We have the 10Ω in parallel with the unknown equivalent resistance to the right of that. Let's call that R0.
If we move 1 node to the left, then R1 = 10Ω + (10Ω)(R0) / ( 10Ω + R0) . This is the Product / Sum for parallel resistances. You can keep going: R2 = 10Ω + (10Ω)(R1) / ( 10Ω + R1) and so on.
So why am I doing all of this? You can iterate till it converges on a number. Even though we don't know what R0 is, we can take an initial guess. We know it should be larger than 10Ω, so pick 11 as an initial guess.
I used Excel. Put my guess for R0 in the first cell {A1}, then in A2 I put the following formula: =10+10*A1/(10+A1)
I copied this down several rows. You can see that it converges fairly fast to a number (numerically close to your answer).
But even if I put wild guesses like 0 or 1 million, it still converges pretty close after only 5 or 6 iterations.