22 lines
459 B
Python
22 lines
459 B
Python
import re
|
|
|
|
t = int(input())
|
|
a = [input() for _ in range(t)]
|
|
# Continue your code here and print your final answer!
|
|
patterns = {
|
|
"hiss": re.compile("^hiss+$"),
|
|
"trill": re.compile("^tri+ll+$"),
|
|
"burble": re.compile("^bu+r+bl+e$"),
|
|
}
|
|
|
|
|
|
for line in a:
|
|
found = False
|
|
for name in patterns:
|
|
if patterns[name].match(line):
|
|
print(name)
|
|
found = True
|
|
break
|
|
if not found:
|
|
print("human noises")
|