Here is the word problem:
There is a tournament where teams compete against each other exactly once, and determine the winner. Show that the teams can be lined up in such an order, that each won against its immediate neighbor on the right side.
My question is: does the following flowchart represent a valid solution?
Induction: if $n=1$ the sequence trivially has the desired property. Now assume, we have $n$ teams which already form a sequence with the desired property, and we also have the $(n+1)^{th}$ team at hand, then:

And two questions with my attempts to answer them:
Is the sequence unique?
No. Counterexample: Say, we have 3 teams, and 1st won against the 2nd, 2nd won against the 3rd, 3rd won against the 1st. Then the sequence 1,2,3 has the desired property, and so does the sequence 3,1,2.
Does it represent a "fair" ranking?
I guess the question basically means whether the relationship "$a$ won against $b$" is transitive. And the answer is no. A counterexample would be 3,1,2 from the previous question.