Jealous of Mirko's position as head of the village, Borko stormed into his tent and tried to demonstrate Mirko's incompetence for leadership with a trick.
Borko puts three opaque cups onto the table next to each other (opening facing down) and a small ball under the leftmost cup. He then swaps two cups in one of three possible ways a number of times. Mirko has to tell which cup the ball ends up under.
Wise Mirko grins with his arms crossed while Borko struggles to move the cups faster and faster. What Borko does not know is that programmers in the back are recording all his moves and will use a simple program to determine where the ball is. Write that program.
Input Specification
The first and only line contains a string of at most 50 characters, Borko's moves.
Each of the characters is A
, B
or C
.
Output Specification
Output the index of the cup under which the ball is: if it is under the left cup, if it is under the middle cup or if it is under the right cup.
Sample Input 1
AB
Sample Output 1
3
Sample Input 2
CBABCACCC
Sample Output 2
1
Comments
This comment is hidden due to too much negative feedback. Show it anyway.
I'm at a loss, I'm unsrue what I am doing wrong. It appears, when having 'AA' the Ball stays in locations 2, and does not go back to locations 1 on the 2nd A [Iteration]
When location is called, should be 1, but outputs 2. Please advise. Here is my Sub {https://dmoj.ca/submission/4408870}
ball_location == 1
Much Appreciated! So many '=' Guess I just kept overlooking it, felt defeated and it was the last thing I wanted to do before I slept, but failed haha. Too tired and haste-y.