Files
Justin Lin 8582780ac9 commit
2026-05-02 15:42:52 +10:00

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")