Why does the test case 3,4 and 6 is not working?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Why does the test case 3,4 and 6 is not working??

n = input() a = n.index("G") b = n.index("

quot;) c = n.index("T") if b >= a and c >= b: print("quiet") else: print("ALARM") Question is: You are in charge of security at a casino, and there is a thief who is trying to steal the casino's money! Look over the security diagrams to make sure that you always have a guard between the thief and the money! There is one money location, one thief, and any number of guards on each floor of the casino. Task: Evaluate a given floor of the casino to determine if there is a guard between the money and the thief, if there is not, you will sound an alarm. Input Format: A string of characters that includes $ (money), T (thief), and G (guard), that represents the layout of the casino floor. Space on the casino floor that is not occupied by either money, the thief, or a guard is represented by the character x. Output Format: A string that says 'ALARM' if the money is in danger or 'quiet' if the money is safe.

1st Jul 2021, 8:41 AM
Shahir
Shahir - avatar
3 Answers
+ 4
Shaik.Shahir , the if condition used in the code is not sufficient to get all possible combinations of "
quot; "G" "T" correctly in the way it is done. only "$GT" or "TG
quot; can give "quiet", all the others should give "ALARM". (there a 6 combinations possible in total) what makes it a little bit confusing are all the "x'. it could be helpful to remove all the "x" before checking the conditions. after this, only 3 characters are left,, which are easy to check. happy coding!
1st Jul 2021, 9:30 AM
Lothar
Lothar - avatar
+ 1
You are in charge of security at a casino, and there is a thief who is trying to steal the casino's money! Look over the security diagrams to make sure that you always have a guard between the thief and the money! There is one money location, one thief, and any number of guards on each floor of the casino. Task: Evaluate a given floor of the casino to determine if there is a guard between the money and the thief, if there is not, you will sound an alarm. Input Format: A string of characters that includes $ (money), T (thief), and G (guard), that represents the layout of the casino floor. Space on the casino floor that is not occupied by either money, the thief, or a guard is represented by the character x. Output Format: A string that says 'ALARM' if the money is in danger or 'quiet' if the money is safe. Sample Input: xxxxxGxx$xxxT Sample Output: ALARM
1st Jul 2021, 8:53 AM
Shahir
Shahir - avatar
0
Thanks
1st Jul 2021, 9:32 AM
Shahir
Shahir - avatar