[Solved]"Security" challenge catching on last hidden input | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

[Solved]"Security" challenge catching on last hidden input

The question is : find out if there is a 'G' in between a 'T' or '

#x27;. There is one $ and one T and random number of G's. There is also a random # of 'x' interspaced. If there is no G between T and $ print "ALARM" Else print "quiet" Example code: xxGxxT$ result: ALARM Ex2: xxxTGxx$xx Result: quiet This is my code: import re plan = input() pattern1 = r"^[x|G]*['
#x27;]+[x]*[G]+[x]*[T]+[x|G]*
quot; pattern2 = r"^[x|G]*[T]+[x]*[G]+[x]*['
#x27;]+[x|G]*
quot; if re.search(pattern1, plan) or re.search(pattern2, plan): print ("quiet") else: print("ALARM") In almost all situations it's printing the correct thing. I don't know why it's catching on the last thing. Thanks for any help.

18th Feb 2021, 4:13 AM
Saturn Mike
Saturn Mike - avatar
3 Answers
+ 1
Malek Alsset be careful with the *, it's gready
18th Feb 2021, 4:39 AM
Angelo
Angelo - avatar
0
Thanks. I am gonna stare at your code until I understand it.
18th Feb 2021, 4:39 AM
Saturn Mike
Saturn Mike - avatar
0
Ur code doesn't work
8th Jan 2022, 7:56 PM
Abdulkareem Nasir