You will be given three integers
In order to make for a more pleasant viewing, we want to rearrange them in the given order.
Input Specification
The first line contains three positive integers
The second line contains three uppercase letters A
, B
and C
(with no spaces between them) representing the desired order.
Output Specification
Output the
Sample Input 1
Copy
1 5 3
ABC
Sample Output 1
Copy
1 3 5
Sample Input 2
Copy
6 4 2
CAB
Sample Output 2
Copy
6 2 4
Comments
Any ideas why my code is failing 60% of the time? Every test I run it works.
You forgot to add something in your 4th line. Try looking at the test cases.